diff --git a/app/components-preview/page.tsx b/app/components-preview/page.tsx index 8998bfc..8d9df16 100644 --- a/app/components-preview/page.tsx +++ b/app/components-preview/page.tsx @@ -2,13 +2,16 @@ import { useState } from "react"; import TextInput from "../components/TextInput"; -import SelectInput from "../components/SelectInput"; +import Checkbox from "../components/Checkbox"; +import RadioGroup from "../components/RadioGroup"; export default function ComponentsPreview() { const [defaultInputValue, setDefaultInputValue] = useState(""); const [activeInputValue, setActiveInputValue] = useState(""); const [errorInputValue, setErrorInputValue] = useState(""); - const [selectValue, setSelectValue] = useState(""); + const [standardCheckbox, setStandardCheckbox] = useState(false); + const [inverseCheckbox, setInverseCheckbox] = useState(false); + const [radioValue, setRadioValue] = useState(""); return (