Skip to content

Commit

Permalink
feat: show version number
Browse files Browse the repository at this point in the history
Fixes #17
  • Loading branch information
TripleSpeeder committed Feb 22, 2020
1 parent 1459c59 commit 4537a97
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import OnboardGate from './components/OnboardGate'
import {Button, Container, Divider, Grid, Header, Icon, List, Menu, Popup, Segment} from 'semantic-ui-react'
import AddressInputContainer from './components/AddressInputContainer'
import OnboardContext from './components/OnboardContext'
import pkg from '../package.json'


const App = () => {
Expand Down Expand Up @@ -129,8 +130,9 @@ const App = () => {
</Switch>
</OnboardContext>
<Segment basic>
<Divider></Divider>
<Divider/>
<Container textAlign={'center'}>
<span style={{ fontSize: '1em', float: 'right' }}><Icon name={'copyright outline'}/> Michael Bauer</span>
<List horizontal >
<List.Item as={'a'} href={'https://twitter.com/TripleSpeeder'} target={'_blank'}>
<Popup content='@triplespeeder' trigger={<Icon size={'big'} name={'twitter'}/>}/>
Expand All @@ -148,13 +150,10 @@ const App = () => {
<Popup content='u/TripleSpeeder' trigger={<Icon size={'big'} name={'reddit'}/>}/>
</List.Item>
</List>
</Container>
<Container textAlign={'center'}>
<p style={{ fontSize: '1em', float: 'right' }}><Icon name={'copyright outline'}/> Michael Bauer</p>
<span style={{ fontSize: '1em', float: 'left' }}>{pkg.version}</span>
</Container>
</Segment>
</Router>

)
}

Expand Down

0 comments on commit 4537a97

Please sign in to comment.