main
Last change
on this file since 24819a8 was 24819a8, checked in by Aleksandar Panovski <apano77@…>, 15 months ago |
Authorization layer
|
-
Property mode
set to
100644
|
File size:
330 bytes
|
Line | |
---|
1 | import * as React from "react";
|
---|
2 | import WelcomeContent from "./WelcomeContent";
|
---|
3 | import AuthContent from "./AuthContent";
|
---|
4 |
|
---|
5 | export default class AppContent extends React.Component {
|
---|
6 | render() {
|
---|
7 | return (
|
---|
8 | <div>
|
---|
9 | <WelcomeContent/>
|
---|
10 | <AuthContent/>
|
---|
11 | </div>
|
---|
12 | )
|
---|
13 | }
|
---|
14 | } |
---|
Note:
See
TracBrowser
for help on using the repository browser.