Skip to content

Commit

Permalink
Add: Select playground
Browse files Browse the repository at this point in the history
  • Loading branch information
Hayao0819 committed Mar 22, 2024
1 parent 2e9cc0f commit bcf1425
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/app/(hayao)/playground/select/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import { FC } from "react";

import CommonSpacer from "@/components/layouts/CommonSpacer";

const SelectPlayground: FC = () => {
return (
<CommonSpacer>
<select size={2} className="size-24">
{[...Array(100)].map((_, i) => (
<option key={i}>{i}</option>
))}
</select>
</CommonSpacer>
);
};
export default SelectPlayground;

0 comments on commit bcf1425

Please sign in to comment.