import * as React from "react"; import styled from "../../native"; const StyledView = styled.View` background-color: papayawhip; `; const StyledText = styled.Text` color: palevioletred; `; class MyReactNativeComponent extends React.Component<{}, {}> { render() { return Hello World! ; } }