Create structure of basic UI components

This commit is contained in:
André Wahlberg
2020-11-20 09:33:40 +01:00
parent cf7a1e8b6f
commit 12af81f21f
11 changed files with 95 additions and 58 deletions

View 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;