About to start work on buttons

This commit is contained in:
2018-05-15 08:10:54 +10:00
parent fbceaaddb0
commit d8b1c41538
10 changed files with 83 additions and 17 deletions

View File

@ -25,7 +25,7 @@ import React from 'react';
import { connect } from 'react-redux';
import Page, { PageBoundary } from './../Page';
import Section, { BodySection } from './../../section/Section';
import Input, { Form, InputGroup, TextArea, Label } from './../../input/input';
import Input, { Form, InputGroup, TextArea, Label, ButtonGroup } from './../../input/input';
import Language from './../../language/Language';
class ContactPage extends React.Component {
@ -77,14 +77,10 @@ class ContactPage extends React.Component {
/>
</InputGroup>
<InputGroup>
<ButtonGroup>
<Input type="submit" value={ Language.get("pages.contact.send") } primary />
<Input type="submit" value="Default" />
<Input type="button" value="Primary" primary />
<Input type="button" value="Secondary" secondary />
<Input type="button" value="Danger" danger />
</InputGroup>
<Input type="reset" value={ Language.get("pages.contact.reset") } />
</ButtonGroup>
</Form>
</BodySection>
</PageBoundary>