mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
22 lines
475 B
JavaScript
22 lines
475 B
JavaScript
import React from 'react';
|
|
import { useState } from '@storybook/client-api';
|
|
|
|
export default {
|
|
title: 'Hooks',
|
|
};
|
|
|
|
export const Checkbox = () => {
|
|
const [on, setOn] = useState(false);
|
|
return (
|
|
<label>
|
|
<input type="checkbox" checked={on} onChange={e => setOn(e.target.checked)} />
|
|
On
|
|
</label>
|
|
);
|
|
};
|
|
|
|
export const Input = () => {
|
|
const [text, setText] = useState('foo');
|
|
return <input value={text} onChange={e => setText(e.target.value)} />;
|
|
};
|