2023-09-14 12:38:00 +08:00
|
|
|
import Option1 from "./1/page";
|
|
|
|
import Option2 from "./2/page";
|
|
|
|
import Option3 from "./3/page";
|
2023-09-14 18:24:02 +08:00
|
|
|
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 />
|
2023-09-14 18:24:02 +08:00
|
|
|
<TagOption />
|
2023-09-14 12:38:00 +08:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|