14 lines
398 B
JavaScript
14 lines
398 B
JavaScript
import React from "react";
|
|
import { Link } from "react-router-dom";
|
|
|
|
const HomePage = () => (
|
|
<div className="jumbotron">
|
|
<h1>PluralSight Administration</h1>
|
|
<p>React, Redux and React Router for ultra-responsive web-pages</p>
|
|
<Link to="about" className="btn btn-primary btn-lg">
|
|
Learn More
|
|
</Link>
|
|
</div>
|
|
);
|
|
|
|
export default HomePage; |