frontend/smart-hut/src/views/NavbarTest.js
2020-03-11 17:38:04 +01:00

12 lines
213 B
JavaScript

import React, {Component} from 'react';
import {Button } from 'semantic-ui-react';
export default class NavbarTest extends Component {
render() {
return (
<h1>Ciao</h1>
)
}
}