wix-style-react
Version:
wix-style-react
20 lines (19 loc) • 432 B
JavaScript
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'
)
);
});