frontend/smart-hut/src/views/NavbarTest.js

12 lines
213 B
JavaScript
Raw Normal View History

2020-03-11 16:38:04 +00:00
import React, {Component} from 'react';
import {Button } from 'semantic-ui-react';
export default class NavbarTest extends Component {
render() {
return (
<h1>Ciao</h1>
)
}
}