Skip to content

Commit

Permalink
chore: RadioContext 변경 사항 반영
Browse files Browse the repository at this point in the history
  • Loading branch information
ghdtjgus76 committed Jun 12, 2024
1 parent 93939a3 commit 53fa294
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 14 deletions.
13 changes: 2 additions & 11 deletions apps/wow-docs/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { css } from "@styled-system/css/css";
import Checkbox from "wowds-ui/Checkbox";
import Chip from "wowds-ui/Chip";
import { RadioButton, RadioGroup } from "wowds-ui/RadioGroup";
import RadioButton from "wowds-ui/RadioButton";
import RadioGroup from "wowds-ui/RadioGroup";
import Switch from "wowds-ui/Switch";

const Home = () => {
Expand All @@ -14,15 +14,6 @@ const Home = () => {
<RadioButton label="1학년" value="1학년" />
<RadioButton label="2학년" value="2학년" />
</RadioGroup>
<main
className={css({
color: "textBlack",
textStyle: "h1",
bg: "backgroundAlternative",
})}
>
<p>docs</p>
</main>
</>
);
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { createContext } from "react";
*/

export interface RadioContextProps {
name: string;
name?: string;
value?: string;
onChange?: (event: ChangeEvent<HTMLInputElement>) => void;
disabled?: boolean;
Expand Down
2 changes: 0 additions & 2 deletions packages/wow-ui/src/components/RadioGroup/index.ts

This file was deleted.

0 comments on commit 53fa294

Please sign in to comment.