15 lines
360 B
JavaScript
15 lines
360 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 apps.</p>
|
|
<Link to="about" className="btn btn-primary btn-lg">
|
|
Learn more
|
|
</Link>
|
|
</div>
|
|
);
|
|
|
|
export default HomePage;
|