mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-25 03:49:11 +00:00
11 lines
211 B
TypeScript
11 lines
211 B
TypeScript
import { CopyArea } from './CopyArea';
|
|
|
|
export default {
|
|
title: 'Atoms/Copy Area',
|
|
component: CopyArea,
|
|
args: {
|
|
value: 'Hello world',
|
|
},
|
|
};
|
|
|
|
export const copyArea = (args) => <CopyArea {...args} />;
|