source: my-react-app/src/components/AppContent.js@ a2c6c2b

main
Last change on this file since a2c6c2b was 24819a8, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Authorization layer

  • Property mode set to 100644
File size: 330 bytes
Line 
1import * as React from "react";
2import WelcomeContent from "./WelcomeContent";
3import AuthContent from "./AuthContent";
4
5export 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.