aboutsummaryrefslogtreecommitdiffstats
path: root/packages/dev-tools-pages/ts/pages/landing/landing.tsx
blob: a6cb89a7baed341c4412e08378f67a7984cce3d9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import * as _ from 'lodash';
import * as React from 'react';

interface LandingProps {}

interface LandingState {}

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