Skip to content

Instantly share code, notes, and snippets.

@Kristian-Roopnarine
Created February 12, 2020 20:44
Show Gist options
  • Save Kristian-Roopnarine/7f041a9667bd0589ae0f43732e36f74b to your computer and use it in GitHub Desktop.
Save Kristian-Roopnarine/7f041a9667bd0589ae0f43732e36f74b to your computer and use it in GitHub Desktop.
import React from 'react'
import Header from './Header'
import Projects from './Projects'
import Skills from './Skills'
const App = () => {
return (
<div>
<Header />
<Skills />
<Projects />
</div>
)
}
export default App
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment