import { Loading, Empty, Failure, Success } from './PartsOfUserCell' import { standard } from './PartsOfUserCell.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/PartsOfUserCell' }