Sha256: 6b5f5ca31bdbf09fe69a5ca9e4bd16ee594f489fdce6207917bc70aeb07180c0
Contents?: true
Size: 755 Bytes
Versions: 755
Compression:
Stored size: 755 Bytes
Contents
import React from 'react' import { Body } from '../..' const BodyStyled = (props) => { return ( <> <Body {...props}> <b>{"This text is using the <b> tag"}</b> <br /> <br /> <strong>{"This text is using the <strong> tag"}</strong> <br /> <br /> <a href="#">{"This text is using the <a> tag"}</a> <br /> <br /> <i>{"This text is using an <i> tag"}</i> <br /> <br /> {"This "}<em>word</em>{" is using an <em> tag."} <br /> <br /> <small>{"This text is using a <small> tag."}</small> <br /> <br /> <u>{"This text is using a <u> tag."}</u> </Body> </> ) } export default BodyStyled
Version data entries
755 entries across 755 versions & 2 rubygems