Phase 4. 마에스트로 목록 화면 구현

This commit is contained in:
2026-06-10 22:22:45 +09:00
parent dbf9b3e180
commit fbe4caa9e1
8 changed files with 1226 additions and 4 deletions
+20
View File
@@ -0,0 +1,20 @@
"use client";
import type { ComponentProps } from "react";
type AutoSubmitSelectProps = ComponentProps<"select">;
export function AutoSubmitSelect({
onChange,
...props
}: AutoSubmitSelectProps) {
return (
<select
{...props}
onChange={(event) => {
onChange?.(event);
event.currentTarget.form?.requestSubmit();
}}
/>
);
}