source: frontend/src/Header.js@ d76b7ee

Last change on this file since d76b7ee was d76b7ee, checked in by Danilo <danilo.najkov@…>, 2 years ago

prototype final

  • Property mode set to 100644
File size: 488 bytes
Line 
1import {Button} from "antd";
2import React from "react";
3
4export function Header(props) {
5 return <div style={{textAlign: "start"}}>
6 <span style={{fontWeight: "500", fontSize: "30px", padding: "20px", letterSpacing: "1px"}}>resTools</span>
7 <Button type='primary'
8 onClick={props.onClickButton}
9 style={{fontSize: "15px", float: "right", marginTop: "8px", marginRight: "20px"}}>
10 {props.buttonText}
11 </Button>
12 </div>;
13}
Note: See TracBrowser for help on using the repository browser.