diff --git a/packages/shared/components/checkbox/Checkbox.stories.tsx b/packages/shared/components/checkbox/Checkbox.stories.tsx index 768f0fa181..f2bd11bd85 100644 --- a/packages/shared/components/checkbox/Checkbox.stories.tsx +++ b/packages/shared/components/checkbox/Checkbox.stories.tsx @@ -23,34 +23,6 @@ const meta = { type Story = StoryObj; export default meta; -// class Checkbox extends React.Component { -// constructor(props: any) { -// super(props); - -// this.state = { -// isChecked: false, -// }; -// } - -// onChange = (e: any) => { - -// this.props.onChange(e); - -// this.setState({ isChecked: !this.state.isChecked }); -// }; - -// render() { -// return ( -// -// ); -// } -// } - const AllCheckboxesTemplate = (args: CheckboxProps) => { const { onChange } = args; return (