main
Last change
on this file since db39d9e was 5a9c93b, checked in by Aleksandar Panovski <apano77@…>, 15 months ago |
Authorization layer
|
-
Property mode
set to
100644
|
File size:
361 bytes
|
Line | |
---|
1 | import * as React from "react";
|
---|
2 |
|
---|
3 | export default function Buttons(props) {
|
---|
4 | return (
|
---|
5 | <div className="row">
|
---|
6 | <div className="col-md-12 text-center" style={{marginTop:"30px"}}>
|
---|
7 | <button onClick={props.login}>Login</button>
|
---|
8 | <button onClick={props.logout}>Logout</button>
|
---|
9 | </div>
|
---|
10 | </div>
|
---|
11 | )
|
---|
12 | } |
---|
Note:
See
TracBrowser
for help on using the repository browser.