Sha256: b26b7d8f5c9167d3769aa2b908ed4cd8534cda26a920e16989ebb884c1554a10
Contents?: true
Size: 614 Bytes
Versions: 1
Compression:
Stored size: 614 Bytes
Contents
import React from 'react'; import {EmptyState} from '@shopify/polaris'; import {usePerformanceMark, Stage} from '@shopify/react-performance'; import {useI18n} from '@shopify/react-i18n'; import {emptyStateIllustration} from './illustrations'; export default function Home() { usePerformanceMark(Stage.Complete, 'Home'); const [i18n] = useI18n(); return ( <> <EmptyState heading={i18n.translate('heading')} image={emptyStateIllustration} footerContent={i18n.translate('footerContent', { path: 'app/ui/features/Home/Home.tsx', })} /> </> ); }
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
quilt_rails-3.1.0 | lib/generators/quilt/demo_app/templates/app-ui/features/Home/Home.tsx |