Add basic VT UI design
This commit is contained in:
@ -1,13 +1,17 @@
|
||||
import './css/BottomMenu.css';
|
||||
import React, { Component } from 'react';
|
||||
import './css/BottomMenu.css';
|
||||
import ticketsIcon from '../img/tickets.svg';
|
||||
import buyTicketsIcon from '../img/tickets+.svg';
|
||||
import travelIcon from '../img/tram.svg';
|
||||
import BottomMenuButton from './BottomMenuButton';
|
||||
|
||||
class BottomMenu extends Component {
|
||||
render() {
|
||||
return (
|
||||
<div id="bottomMenu">
|
||||
<button>Biljetter</button>
|
||||
<button>Köp biljett</button>
|
||||
<button>Reseplanering</button>
|
||||
<BottomMenuButton label="Biljetter" icon={ticketsIcon}/>
|
||||
<BottomMenuButton label="Köp biljett" icon={buyTicketsIcon}/>
|
||||
<BottomMenuButton label="Reseplanering" icon={travelIcon}/>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
Reference in New Issue
Block a user