Forked from
zesje / zesje
3880 commits behind the upstream repository.
-
Thomas Roos authoredThomas Roos authored
AddStudents.js 380 B
import React from 'react';
import NavBar from '../components/NavBar';
import Hero from '../components/Hero';
const AddStudents = () => {
return (
<div>
<NavBar />
<Hero title='Add Students' subtitle='Tell me who made this exam' />
<h1>React Router demo</h1>
Hoi dit de AddStudents
</div>
)
}
export default AddStudents;