16 lines
324 B
TypeScript
16 lines
324 B
TypeScript
import BannerSection from "./components/BannerSection";
|
|
import CategorySection from "./components/CategorySection";
|
|
import StepSection from "./components/StepSection";
|
|
|
|
const Home = () => {
|
|
return (
|
|
<div>
|
|
<BannerSection />
|
|
<StepSection />
|
|
<CategorySection />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Home;
|