diff --git a/src/app/(hayao)/playground/select/page.tsx b/src/app/(hayao)/playground/select/page.tsx new file mode 100644 index 0000000..74a9176 --- /dev/null +++ b/src/app/(hayao)/playground/select/page.tsx @@ -0,0 +1,16 @@ +import { FC } from "react"; + +import CommonSpacer from "@/components/layouts/CommonSpacer"; + +const SelectPlayground: FC = () => { + return ( + + + + ); +}; +export default SelectPlayground;