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