feat: added nav
This commit is contained in:
parent
7ec3478270
commit
1b2a690ebe
@ -3,11 +3,13 @@ import './App.css'
|
|||||||
import 'semantic-ui-css/semantic.min.css'
|
import 'semantic-ui-css/semantic.min.css'
|
||||||
import DataTable from './DataTable/DataTable'
|
import DataTable from './DataTable/DataTable'
|
||||||
import ListViewer from './ListViewer/ListViewer'
|
import ListViewer from './ListViewer/ListViewer'
|
||||||
|
import Nav from './Nav/Nav'
|
||||||
|
|
||||||
class App extends Component {
|
class App extends Component {
|
||||||
render = () => {
|
render = () => {
|
||||||
return (
|
return (
|
||||||
<div className='App'>
|
<div className='App'>
|
||||||
|
<Nav />
|
||||||
<div className='Workspace'>
|
<div className='Workspace'>
|
||||||
<ListViewer />
|
<ListViewer />
|
||||||
<DataTable />
|
<DataTable />
|
||||||
|
12
src/views/Nav/Nav.css
Normal file
12
src/views/Nav/Nav.css
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
.Nav{
|
||||||
|
height: 40px;
|
||||||
|
background-color: #2185d0;
|
||||||
|
color: white;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.appName {
|
||||||
|
display: inline-block;
|
||||||
|
margin: 10px auto 0px auto;
|
||||||
|
font-size: 24px;
|
||||||
|
}
|
14
src/views/Nav/Nav.js
Normal file
14
src/views/Nav/Nav.js
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
import React, { Component } from 'react'
|
||||||
|
import './Nav.css'
|
||||||
|
|
||||||
|
class Nav extends Component {
|
||||||
|
render = () => {
|
||||||
|
return (
|
||||||
|
<div className='Nav'>
|
||||||
|
<span className='appName'>Lovelace.Technology</span>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default Nav
|
Loading…
x
Reference in New Issue
Block a user