remnantchat/src/Bootstrap.tsx

17 lines
302 B
TypeScript
Raw Normal View History

2022-08-09 09:35:49 -05:00
import React from 'react'
2022-08-09 21:28:46 -05:00
import { Routes, Route } from 'react-router-dom'
import { Home } from './pages/Home/'
2022-08-09 09:35:49 -05:00
function Bootstrap() {
2022-08-09 21:28:46 -05:00
return (
<div className="Chitchatter">
<Routes>
<Route path="/" element={<Home />} />
</Routes>
</div>
)
2022-08-09 09:35:49 -05:00
}
export default Bootstrap