mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-24 11:29:12 +00:00
11 lines
366 B
TypeScript
11 lines
366 B
TypeScript
import * as React from 'react';
|
|
import { BreakpointsProvider } from './BreakpointProvider';
|
|
import { BreakpointDebugTool } from './DebugTool';
|
|
|
|
export default {
|
|
title: 'Atoms/Breakpoints',
|
|
decorators: [(story) => <BreakpointsProvider>{story()}</BreakpointsProvider>],
|
|
component: BreakpointDebugTool,
|
|
};
|
|
|
|
export const DebugTool = () => <BreakpointDebugTool />;
|