nextjs-tailwindcss-headless.../app/components/options/page.tsx
2023-09-14 12:38:00 +08:00

16 lines
323 B
TypeScript

import Option1 from "./1/page";
import Option2 from "./2/page";
import Option3 from "./3/page";
import Tag from "./4/page";
export default function Options() {
return (
<div className="h-full flex space-x-4 justify-center mt-10">
<Option1 />
<Option2 />
<Option3 />
<Tag />
</div>
);
}