mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
20 lines
411 B
Plaintext
20 lines
411 B
Plaintext
```js
|
|
// Checkbox.stories.js
|
|
|
|
import React from 'react';
|
|
|
|
import { Checkbox } from './Checkbox';
|
|
|
|
export default {
|
|
title: 'MDX/Checkbox',
|
|
component: Checkbox,
|
|
};
|
|
|
|
export const allCheckboxes = () => (
|
|
<form>
|
|
<Checkbox id="Unchecked" label="Unchecked" />
|
|
<Checkbox id="Checked" label="Checked" checked />
|
|
<Checkbox appearance="secondary" id="second" label="Secondary" checked />
|
|
</form>
|
|
);
|
|
``` |