You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mvfront-react/src/components/layouts/Header.js

19 lines
302 B

import React, {Component} from "react";
class Header extends Component {
constructor(props) {
super(props);
this.state = {
}
}
render(){
return(
<div >
<h1>HEADER</h1>
</div>
)
}
}
export default Header;