PHP Classes

File: resources/js/components/pages/Home.js

Recommend this page to a friend!
  Classes of Maniruzzaman Akash   Laravel React Task Management   resources/js/components/pages/Home.js   Download  
File: resources/js/components/pages/Home.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Laravel React Task Management
Application to manage tasks
Author: By
Last change:
Date: 1 year ago
Size: 780 bytes
 

Contents

Class file image Download
import React from "react"; import { Container } from "react-bootstrap"; import { Link } from "react-router-dom"; import { PUBLIC_URL } from "../../constants"; function Home() { return ( <Container> <div className="card card-body"> <h2>Welcome to Home Page</h2> <p> Login to your account and enjoy storing and assigning your projects... </p> <p> <Link to={`${PUBLIC_URL}login`} className="btn btn-primary"> Sign In Now </Link> </p> <p> If there is no account, Please Register: <br /> <Link to={`${PUBLIC_URL}register`} className="btn btn-success"> Sign Up </Link> </p> </div> </Container> ); } export default Home;