import React from 'react'; import { View, Linking, StyleSheet } from 'react-native'; import { storiesOf } from '@storybook/react-native'; import Text from '../app/components/Base/Text'; import Title from '../app/components/Base/Title'; const styles = StyleSheet.create({ wrapper: { flex: 1, padding: 24, justifyContent: 'center', }, }); storiesOf('Getting Started', module).add('Introduction', () => { const openMetaMaskMobileReadme = () => { Linking.openURL('https://github.com/MetaMask/metamask-mobile'); }; const openMetaMaskMobileStorybookDocumentationGuidelines = () => { Linking.openURL( 'https://github.com/MetaMask/metamask-mobile/tree/develop/storybook/DOCUMENTATION_GUIDELINES.md', ); }; return ( Introduction Welcome to the MetaMask Mobile Storybook. Building Locally and Contributing If you are looking to get a local build of MetaMask Mobile up and running or contribute to the mobile app codebase please read the MetaMask{' '} README.md Documentation Guidelines If you're here to improve our storybook documentation you're in the right place! Please head over to the{' '} Documentation Guidelines {' '} for contributing to component documentation in storybook. ); });