Create structure of basic UI components
This commit is contained in:
16
src/components/BottomMenu.js
Normal file
16
src/components/BottomMenu.js
Normal file
@ -0,0 +1,16 @@
|
||||
import './css/BottomMenu.css';
|
||||
import React, { Component } from 'react';
|
||||
|
||||
class BottomMenu extends Component {
|
||||
render() {
|
||||
return (
|
||||
<div id="bottomMenu">
|
||||
<button>Biljetter</button>
|
||||
<button>Köp biljett</button>
|
||||
<button>Reseplanering</button>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
export default BottomMenu;
|
Reference in New Issue
Block a user