nextjs-tailwindcss-headless.../app/components/options/page.tsx

16 lines
335 B
TypeScript
Raw Normal View History

2023-09-14 12:38:00 +08:00
import Option1 from "./1/page";
import Option2 from "./2/page";
import Option3 from "./3/page";
import TagOption from "./4/page";
2023-09-14 12:38:00 +08:00
export default function Options() {
return (
<div className="h-full flex space-x-4 justify-center mt-10">
<Option1 />
<Option2 />
<Option3 />
<TagOption />
2023-09-14 12:38:00 +08:00
</div>
);
}