From 5f4611d65e40eae3ca6191a15f68d69ea5a1c4cb Mon Sep 17 00:00:00 2001 From: Kirill Rogovoy Date: Tue, 20 Jul 2021 21:24:52 +0300 Subject: WIP --- app/components/button/button.story.tsx | 51 ---------------------------------- 1 file changed, 51 deletions(-) delete mode 100644 app/components/button/button.story.tsx (limited to 'app/components/button/button.story.tsx') diff --git a/app/components/button/button.story.tsx b/app/components/button/button.story.tsx deleted file mode 100644 index 5dc21c1..0000000 --- a/app/components/button/button.story.tsx +++ /dev/null @@ -1,51 +0,0 @@ -import * as React from 'react' -import { ViewStyle, TextStyle, Alert } from 'react-native' -import { storiesOf } from '@storybook/react-native' -import { StoryScreen, Story, UseCase } from '../../../storybook/views' -import { Button } from './button' - -declare let module - -const buttonStyleArray: ViewStyle[] = [ - { paddingVertical: 100 }, - { borderRadius: 0 }, -] - -const buttonTextStyleArray: TextStyle[] = [ - { fontSize: 20 }, - { color: '#a511dc' }, -] - -storiesOf('Button', module) - .addDecorator((fn) => {fn()}) - .add('Style Presets', () => ( - - -