mirror of
https://github.com/Team4388/scouting-2021.git
synced 2026-06-08 16:28:02 -06:00
14 lines
327 B
JavaScript
14 lines
327 B
JavaScript
|
|
import React from 'react'
|
||
|
|
import { Link } from "react-router-dom";
|
||
|
|
|
||
|
|
const PagesList = props => {
|
||
|
|
return (
|
||
|
|
<ul>
|
||
|
|
<li><Link onClick={props.click} to="/Dashboard">Dashboard</Link></li>
|
||
|
|
<li><Link onClick={props.click} to="/Input">Input</Link></li>
|
||
|
|
</ul>
|
||
|
|
)
|
||
|
|
}
|
||
|
|
|
||
|
|
export default PagesList
|