mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 04:41:16 +08:00
19 lines
415 B
Plaintext
19 lines
415 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>
|
|
);
|
|
``` |