Home screen and PanelButtons

This commit is contained in:
John Lyon-Smith
2018-03-02 14:20:51 -08:00
parent 37cbc6becd
commit d347adcf33
13 changed files with 182 additions and 11 deletions

View File

@@ -1,9 +1,30 @@
import React from 'react'
import { Row, Column, PanelButton } from 'ui'
export class Home extends React.Component {
render() {
return (
<div />
<Column>
<Column.Item grow />
<Column.Item>
<Row>
<Row.Item grow />
<Row.Item>
<PanelButton icon='users' text='Users' />
</Row.Item>
<Row.Item width={30} />
<Row.Item>
<PanelButton icon='teams' text='Teams' />
</Row.Item>
<Row.Item width={30} />
<Row.Item>
<PanelButton icon='system' text='System' />
</Row.Item>
<Row.Item grow />
</Row>
</Column.Item>
<Column.Item grow />
</Column>
)
}
}