Skip to content

Commit

Permalink
fix(ui): format fix for radio component
Browse files Browse the repository at this point in the history
  • Loading branch information
[email protected] committed Sep 3, 2024
1 parent 96048c3 commit 258e68f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ export default {
}

interface TemplateProps {
children :React.ReactNode
children: React.ReactNode
}

const Template = ({ children, ...args } :TemplateProps) => <RadioGroup {...args}>{children}</RadioGroup>
const Template = ({ children, ...args }: TemplateProps) => <RadioGroup {...args}>{children}</RadioGroup>
Template.propTypes = {
children: PropTypes.node,
}
Expand Down

0 comments on commit 258e68f

Please sign in to comment.