diff options
Diffstat (limited to 'packages/dev-tools-pages/ts/pages/landing.tsx')
-rw-r--r-- | packages/dev-tools-pages/ts/pages/landing.tsx | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/packages/dev-tools-pages/ts/pages/landing.tsx b/packages/dev-tools-pages/ts/pages/landing.tsx index e89cfa665..a70a9de46 100644 --- a/packages/dev-tools-pages/ts/pages/landing.tsx +++ b/packages/dev-tools-pages/ts/pages/landing.tsx @@ -3,6 +3,7 @@ import * as React from 'react'; import { Button } from '../components/ui/button'; import { Container } from '../components/ui/container'; +import { Text } from '../components/ui/text'; interface LandingProps {} @@ -15,7 +16,11 @@ export class Landing extends React.Component<LandingProps, LandingState> { public render(): React.ReactNode { return ( <Container id="landing" className="clearfix"> - <Button>Click me!</Button> + <Container className="mx-auto p4" width="200px"> + <Button> + <Text fontColor="white">Click me!</Text> + </Button> + </Container> </Container> ); } |