UNPKG

wix-style-react

Version:
20 lines (19 loc) 432 B
import React from 'react'; import Heading from 'wix-style-react/Heading'; import Text from 'wix-style-react/Text'; export default (function () { return React.createElement( 'div', null, React.createElement( Heading, { appearance: 'H1' }, 'This is an h1 heading' ), React.createElement( Text, { size: 'small', weight: 'normal' }, 'This is a small.normal text' ) ); });