aboutsummaryrefslogtreecommitdiffstats
path: root/packages/dev-tools-pages/ts/pages
diff options
context:
space:
mode:
Diffstat (limited to 'packages/dev-tools-pages/ts/pages')
-rw-r--r--packages/dev-tools-pages/ts/pages/landing.tsx (renamed from packages/dev-tools-pages/ts/pages/landing/landing.tsx)9
1 files changed, 8 insertions, 1 deletions
diff --git a/packages/dev-tools-pages/ts/pages/landing/landing.tsx b/packages/dev-tools-pages/ts/pages/landing.tsx
index a6cb89a7b..e89cfa665 100644
--- a/packages/dev-tools-pages/ts/pages/landing/landing.tsx
+++ b/packages/dev-tools-pages/ts/pages/landing.tsx
@@ -1,6 +1,9 @@
import * as _ from 'lodash';
import * as React from 'react';
+import { Button } from '../components/ui/button';
+import { Container } from '../components/ui/container';
+
interface LandingProps {}
interface LandingState {}
@@ -10,6 +13,10 @@ export class Landing extends React.Component<LandingProps, LandingState> {
super(props);
}
public render(): React.ReactNode {
- return <div id="landing" className="clearfix" />;
+ return (
+ <Container id="landing" className="clearfix">
+ <Button>Click me!</Button>
+ </Container>
+ );
}
}