23 lines
546 B
JavaScript
23 lines
546 B
JavaScript
import React, { Component } from 'react'
|
|
import './App.css'
|
|
import 'semantic-ui-css/semantic.min.css'
|
|
import CreateTableForm from './CreateTable/CreateTableForm'
|
|
import TableList from './TableList/TableList'
|
|
import CreateNodule from './CreateNodule/CreateNodule'
|
|
import NoduleList from './NoduleList/NoduleList'
|
|
|
|
class App extends Component {
|
|
render = () => {
|
|
return (
|
|
<div className='App'>
|
|
<CreateTableForm />
|
|
<CreateNodule />
|
|
<TableList />
|
|
<NoduleList />
|
|
</div>
|
|
)
|
|
}
|
|
}
|
|
|
|
export default App
|