2020-05-16 13:24:10 +02:00

47 lines
996 B
JavaScript

import React from 'react';
import { useEffect, useRef, useState } from '@storybook/client-api';
export default {
title: 'Core/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)} />;
};
export const Effect = () => {
const ref = useRef();
useEffect(() => {
if (ref.current != null) {
ref.current.style.backgroundColor = 'yellow';
}
});
return (
<button type="button" ref={ref}>
I should be yellow
</button>
);
};
export const ReactHookCheckbox = () => {
const [on, setOn] = React.useState(false);
return (
<label>
<input type="checkbox" checked={on} onChange={(e) => setOn(e.target.checked)} />
On
</label>
);
};