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