15 lines
281 B
TypeScript
15 lines
281 B
TypeScript
import { type FC } from 'react'
|
|
import Stats from './components/Stats'
|
|
import WeeklyOrdersChart from './components/WeeklyOrdersChart'
|
|
|
|
const Home: FC = () => {
|
|
return (
|
|
<>
|
|
<Stats />
|
|
<WeeklyOrdersChart />
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default Home
|