UNPKG

@mahjongg/mern-mvc

Version:

A CLI that will build a MERN stack application using create-react-app

16 lines (13 loc) 316 B
module.exports = `import React from 'react'; import "./style.css"; const Home = (props) =>{ return ( <div> <h1>You should only see this if you are logged in!</h1> <p>{props.auth.username}</p> <button onClick = {props.handleLogout}>Log Out</button> </div> ); }; export default Home;`;