wix-style-react
Version:
14 lines (12 loc) • 415 B
JavaScript
import React from 'react';
import { StorybookComponents } from 'wix-storybook-utils/StorybookComponents';
import Heading from '..';
import { Text } from '../..';
export default () => (
<StorybookComponents.Stack flexDirection="column">
<Heading>Contacts List</Heading>
<Text secondary>
Sort and keep the track of the people who interact with your site
</Text>
</StorybookComponents.Stack>
);