import { A, Article, Aside, B, BR, Caption, Code, Del, EM, Footer, H1, H2, H3, H4, H5, H6, Header, I, LI, Main, Mark, Nav, P, Pre, S, Section, Strong, Table, TBody, TD, TFoot, TH, THead, Time, TR, UL, } from '@expo/html-elements'; import View from '@expo/html-elements/build/primitives/View'; import React from 'react'; import { ScrollView } from 'react-native'; function CustomArticle({ title, children }: any) { return (
{title}
{children}
); } function HeadingArticle() { return (

Header 1

Header 2

Header 3

Header 4

Header 5
Header 6
); } function LayoutArticle() { return (

Main

Article

Section

); } function TextArticle() { return ( {/* @ts-ignore */} Anchor

Paragraph

Bold Strong Mark Code {/* @ts-ignore */} Italic Emphasize Striked Deleted
{preformattedText}
        {``}
      

A neat nested sentence with TONS of effects{' '} const value = true

); } function ListsArticle() { return ( ); } function TablesArticle() { return (
Caption
The table header
The table body with two columns
Row two Column two
The table footer
); } const preformattedText = `body { color: red; }`; export default class HTMLScreen extends React.Component { static navigationOptions = { title: 'HTML', }; render() { return (

); } }