Skip to content
This repository was archived by the owner on Feb 14, 2022. It is now read-only.

Commit 8b11fc9

Browse files
committed
1 parent 3b0863e commit 8b11fc9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/pages/headless-ui-v1/index.mdx

+3-3
Original file line numberDiff line numberDiff line change
@@ -106,17 +106,17 @@ function MyRadioGroup() {
106106
<RadioGroup.Label>Plan</RadioGroup.Label>
107107
<RadioGroup.Option value="startup">
108108
{({ checked }) => (
109-
<span className={`${checked} ? 'bg-blue-200' : ''`}>Startup</span>
109+
<span className={checked ? 'bg-blue-200' : ''}>Startup</span>
110110
)}
111111
</RadioGroup.Option>
112112
<RadioGroup.Option value="business">
113113
{({ checked }) => (
114-
<span className={`${checked} ? 'bg-blue-200' : ''`}>Business</span>
114+
<span className={checked ? 'bg-blue-200' : ''}>Business</span>
115115
)}
116116
</RadioGroup.Option>
117117
<RadioGroup.Option value="enterprise">
118118
{({ checked }) => (
119-
<span className={`${checked} ? 'bg-blue-200' : ''`}>Enterprise</span>
119+
<span className={checked ? 'bg-blue-200' : ''}>Enterprise</span>
120120
)}
121121
</RadioGroup.Option>
122122
</RadioGroup>

0 commit comments

Comments
 (0)