We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15c0fc8 commit 156731cCopy full SHA for 156731c
1 file changed
src/sections/Projects/Sistent/components/radiogroup/code.js
@@ -9,7 +9,7 @@ import { CodeBlock } from "../button/code-block";
9
import TabButton from "../../../../../reusecore/Button";
10
import { useStyledDarkMode } from "../../../../../theme/app/useStyledDarkMode";
11
12
-import { RadioGroup, Radio, FormControlLabel } from "@layer5/sistent";
+import { RadioGroup, Radio, FormControlLabel } from "@sistent/sistent";
13
14
const codes = [
15
`<RadioGroup value={value} onChange={handleChange}>
@@ -38,7 +38,7 @@ const codes = [
38
const SistentRadioGroup = () => {
39
const location = useLocation();
40
const { isDark } = useStyledDarkMode();
41
-
+
42
const [value, setValue] = React.useState("Layer5");
43
const handleChange = (event) => setValue(event.target.value);
44
0 commit comments