diff options
author | Kirill Rogovoy <[email protected]> | 2021-07-19 20:06:08 +0300 |
---|---|---|
committer | Kirill Rogovoy <[email protected]> | 2021-07-19 20:06:08 +0300 |
commit | f0bf4e7afdcd8b02a62be45ab3e7d047ed865a79 (patch) | |
tree | 575c0ff2cbb846252bd2e494c81c396846aab2f6 /storybook/views/story.tsx | |
parent | 67ad38d0a7cd319623e9f41c0c381ed5c5f6f973 (diff) |
Apply Prettier
Diffstat (limited to 'storybook/views/story.tsx')
-rw-r--r-- | storybook/views/story.tsx | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/storybook/views/story.tsx b/storybook/views/story.tsx index c85f7f0..68d298e 100644 --- a/storybook/views/story.tsx +++ b/storybook/views/story.tsx @@ -1,5 +1,5 @@ -import * as React from "react" -import { ScrollView, View, ViewStyle } from "react-native" +import * as React from 'react' +import { ScrollView, View, ViewStyle } from 'react-native' export interface StoryProps { children?: React.ReactNode @@ -10,7 +10,9 @@ const ROOT: ViewStyle = { flex: 1 } export function Story(props: StoryProps) { return ( <View style={ROOT}> - <ScrollView keyboardShouldPersistTaps="handled">{props.children}</ScrollView> + <ScrollView keyboardShouldPersistTaps="handled"> + {props.children} + </ScrollView> </View> ) } |