From 73308af061af5e17ac7d4a73fa027a2f303c70dd Mon Sep 17 00:00:00 2001 From: Kirill Rogovoy Date: Fri, 23 Jul 2021 11:02:26 +0300 Subject: Update graph data when Emacs node changes + minor improvements --- app_expo/components/button/button.story.tsx | 33 ----------------------------- 1 file changed, 33 deletions(-) delete mode 100644 app_expo/components/button/button.story.tsx (limited to 'app_expo/components/button/button.story.tsx') diff --git a/app_expo/components/button/button.story.tsx b/app_expo/components/button/button.story.tsx deleted file mode 100644 index 54dc2a9..0000000 --- a/app_expo/components/button/button.story.tsx +++ /dev/null @@ -1,33 +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', () => ( - - -