import { Loading, Empty, Failure, Success } from './PartReactionsCell' import { standard } from './PartReactionsCell.mock' export const loading = () => { return Loading ? : null } export const empty = () => { return Empty ? : null } export const failure = () => { return Failure ? : null } export const success = () => { return Success ? : null } export default { title: 'Cells/PartReactionsCell' }