Sha256: 37d3728ce7e826f799f63c565319c04e64a87f628acaaa9a3e0c8eae5af4452b
Contents?: true
Size: 734 Bytes
Versions: 678
Compression:
Stored size: 734 Bytes
Contents
import React from 'react' import { Detail } from '../..' const DetailStyled = (props) => ( <> <Detail {...props}> <b>{"This text is using the <b> tag."}</b> <br /> <br /> <strong>{"This text is using the <strong> tag."}</strong> <br /> <br /> <a>{"This text is using the <a> tag."}</a> <br /> <br /> <i>{"This text is using the <i> tag."}</i> <br /> <br /> {"This "}<em>{"word"}</em>{" is using an <em> tag."} <br /> <br /> <small>{"This text is using the <small> tag."}</small> <br /> <br /> <u>{"This text is using the <u> tag."}</u> <br /> <br /> </Detail> </> ) export default DetailStyled
Version data entries
678 entries across 678 versions & 2 rubygems