18 lines
294 B
JavaScript
18 lines
294 B
JavaScript
import InventoryActions from '../../actions/InventoryActions';
|
|
import React, { Component } from 'react';
|
|
|
|
class Inventory extends Component {
|
|
|
|
render() {
|
|
return (
|
|
<div className="page">
|
|
<div className="options">
|
|
Inventar
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default Inventory;
|