mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-24 11:29:12 +00:00
9 lines
218 B
TypeScript
9 lines
218 B
TypeScript
import * as React from 'react';
|
|
import { DotOverlay } from './DotOverlay';
|
|
|
|
export default {
|
|
title: 'Atoms/Dot Overlay',
|
|
};
|
|
|
|
export const Dark = () => <DotOverlay />;
|
|
export const Light = () => <DotOverlay light />;
|