import { addParameters } from '@storybook/react';
import React from 'react';
import { ThemeProvider } from '../../src/styles';

import { Box } from '../../src';
import boxNotes from './Box.md';

export default {
  title: 'Box',
  component: Box,
  propTablesExclude: [ThemeProvider],
};

addParameters({ info: { text: boxNotes } });

export const simple = () => {
  return <Box>Lorem ipsum</Box>;
};
