Files
kopyl.dev/src/App.tsx
2023-03-27 20:24:53 +03:00

20 lines
407 B
TypeScript

import type { Component } from 'solid-js'
import Controls from './components/Controls'
import Hero from './components/Hero'
import Projects from './components/Projects/Projects'
import ContactForm from './components/ContactForm'
const App: Component = () => {
return (
<div class='App'>
<Controls />
<Hero />
<Projects />
<ContactForm />
</div>
)
}
export default App