mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 02:31:05 +08:00
Add unicode stories
This commit is contained in:
parent
6ce9ff2563
commit
c75a10b79c
@ -1,9 +0,0 @@
|
||||
import React from 'react';
|
||||
import { storiesOf } from '@storybook/react';
|
||||
|
||||
storiesOf('Core/Unicode', module)
|
||||
.add('😀', () => <p>❤️</p>)
|
||||
.add('Кнопки', () => <p>нормальный</p>)
|
||||
.add('바보', () => <p>🤷🏻♂️</p>);
|
||||
|
||||
storiesOf('Core/Unicode/Primário', module).add('😀', () => <p>❤️</p>);
|
14
code/lib/store/template/stories/unicode.stories.ts
Normal file
14
code/lib/store/template/stories/unicode.stories.ts
Normal file
@ -0,0 +1,14 @@
|
||||
import globalThis from 'global';
|
||||
|
||||
export default {
|
||||
component: globalThis.Components.Button,
|
||||
id: '😀',
|
||||
};
|
||||
|
||||
export const Кнопки = {
|
||||
args: { children: 'Кнопки' },
|
||||
};
|
||||
|
||||
export const 바보 = {
|
||||
args: { children: '바보' },
|
||||
};
|
Loading…
x
Reference in New Issue
Block a user