import React, { useState } from 'react'; import { action } from '@storybook/addon-actions'; import { Button } from '../../components/react-demo'; export default { title: 'Other/Demo/Button', component: Button, id: 'demo-button-id', parameters: { docs: { inlineStories: false, description: { component: 'Component description **markdown** override', }, }, }, }; export const WithText = () => ; WithText.storyName = 'with text'; export const WithSomeEmoji = () => ( ); WithSomeEmoji.storyName = 'with some emoji'; export const WithCounter = () => { const [counter, setCounter] = useState(0); const label = `Testing: ${counter}`; return ; }; WithCounter.storyName = 'with counter'; WithCounter.parameters = { docs: { description: { story: 'This demonstrates react hooks working inside stories. **Go team!** 🚀', }, }, };