Skip to content

Commit

Permalink
fix: RadioContextProps 타입 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
hamo-o committed Jun 4, 2024
1 parent ad7d489 commit f0a234f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/wow-ui/src/components/RadioGroup/RadioContext.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ import { createContext } from "react";
*/

export interface RadioContextProps {
name: string | undefined;
value?: string | undefined;
name: string;
value?: string;
onChange?: (event: ChangeEvent<HTMLInputElement>) => void;
disabled?: boolean;
}

const RadioContext = createContext<RadioContextProps>({
name: undefined,
name: "RadioGroupName",
value: undefined,
onChange: undefined,
disabled: false,
Expand Down

0 comments on commit f0a234f

Please sign in to comment.