Fabio Berger fb882b0c77 Add stuff
2018-10-10 17:22:31 +02:00

23 lines
566 B
TypeScript

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>
);
}
}