26 lines
593 B
TypeScript
26 lines
593 B
TypeScript
import React from 'react';
|
|
import SliderHome from './SliderHome';
|
|
import BoxProductDeal from './BoxDeal';
|
|
import CategoryFeature from './CategoryFeature';
|
|
import BoxListCategory from './BoxCategory';
|
|
|
|
const Home = () => {
|
|
return (
|
|
<div className="page-hompage mt-4">
|
|
<div className="container">
|
|
{/* slider */}
|
|
<SliderHome />
|
|
{/* deal */}
|
|
<BoxProductDeal />
|
|
{/* box danh mục nổi bật */}
|
|
<CategoryFeature />
|
|
|
|
{/* DANH SÁCH DANH MỤC */}
|
|
<BoxListCategory />
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Home;
|