import { withColors } from '@roleypoly/design-system/atoms/colors/withColors'; import * as React from 'react'; import styled from 'styled-components'; import { roleCategory } from '../../fixtures/storyData'; import { Role as RoleComponent } from './Role'; export default { title: 'Atoms/Role', component: RoleComponent, decorators: [withColors], }; const Demo = styled.div` display: flex; flex-wrap: wrap; `; const RoleWithState = (props: any) => { const [selected, updateSelected] = React.useState(false); return (