@digidem/wcmc-mapeo-mobile-intro
Version:
Intro screens for Mapeo Mobile for the WCMC ICCA registration app
25 lines (23 loc) • 531 B
JavaScript
import React from 'react';
import { StyleSheet, ScrollView } from 'react-native';
import Markdown from './Markdown';
const InfoScreen = ({
markdownText
}) => {
return /*#__PURE__*/React.createElement(ScrollView, {
style: styles.root,
contentContainerStyle: styles.inner,
bounces: true
}, Markdown(markdownText));
};
export default InfoScreen;
const styles = StyleSheet.create({
root: {
flex: 1
},
inner: {
paddingVertical: 5,
paddingHorizontal: 10
}
});
//# sourceMappingURL=IntroInfo.js.map