Files
hoanghapc_nextJs/src/app/page.tsx

11 lines
146 B
TypeScript
Raw Normal View History

2025-12-29 17:43:31 +07:00
import Home from "@/components/home";
export default function HomePage() {
return (
<>
<Home />
</>
)
}