aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/@next/pages/landing.tsx
blob: 64ef15274619ed91b8ef2f8aa737d394868993dc (plain) (blame)
1
2
3
4
5
6
7
8
9
import * as React from 'react';
import { SiteWrap } from 'ts/@next/components/siteWrap';


export const NextLanding = () => (
  <SiteWrap>
    <div>Hello</div>
  </SiteWrap>
);