aboutsummaryrefslogblamecommitdiffstats
path: root/packages/dev-tools-pages/ts/pages/landing.tsx
blob: e89cfa665da82ff1f864f4f0d2f5a5cc50df23ec (plain) (tree)
1
2
3
4
5
6


                               


                                                       








                                                                          




                                                         

     
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 {}

export class Landing extends React.Component<LandingProps, LandingState> {
    constructor(props: LandingProps) {
        super(props);
    }
    public render(): React.ReactNode {
        return (
            <Container id="landing" className="clearfix">
                <Button>Click me!</Button>
            </Container>
        );
    }
}