Files
cstb-next/src/app/(main)/home/page.tsx

14 lines
171 B
TypeScript
Raw Normal View History

2024-09-20 23:15:42 +08:00
"use client";
import Notice from "@/components/cstb/Notice";
const Home = () => {
return (
<section>
<Notice />
</section>
);
};
export default Home;