1
0
mirror of https://github.com/oceanprotocol/market.git synced 2024-11-16 02:04:54 +01:00
market/src/components/atoms/Loader.stories.tsx

15 lines
352 B
TypeScript
Raw Normal View History

2020-05-07 08:03:30 +02:00
import React from 'react'
import Loader from './Loader'
import { Center } from '../../../.storybook/helpers'
export default {
title: 'Atoms/Loader',
decorators: [(storyFn: any) => <Center>{storyFn()}</Center>]
}
export const Normal = () => <Loader />
export const WithMessage = () => (
<Loader message="Crunching all the tech for you..." />
)