22 lines
405 B
TypeScript
22 lines
405 B
TypeScript
import './App.css'
|
|
import Greeting from './components/Greeting'
|
|
import Hosting from './components/Hosting'
|
|
import InitialSetup from './components/InitialSetup'
|
|
import Program from './components/Program'
|
|
|
|
function App() {
|
|
return (
|
|
<>
|
|
<div className='snowflakes'>
|
|
<InitialSetup/>
|
|
<Greeting/>
|
|
<br/>
|
|
<Hosting/>
|
|
<Program/>
|
|
</div>
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default App
|