Initial commit
This commit is contained in:
17
src/App.tsx
Normal file
17
src/App.tsx
Normal file
@@ -0,0 +1,17 @@
|
||||
import type { Component } from 'solid-js';
|
||||
|
||||
import Controls from './components/Controls';
|
||||
import Hero from './components/Hero'
|
||||
import Projects from './components/Projects/Projects'
|
||||
|
||||
const App: Component = () => {
|
||||
return (
|
||||
<>
|
||||
<Controls/>
|
||||
<Hero/>
|
||||
<Projects/>
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export default App;
|
||||
Reference in New Issue
Block a user