Currently my website looks like below. I have three links in my navigation bar and I'm trying to have them be more spaced apart.
render() {
return (
<Router>
<div>
<nav>
<Link to="/admin/dashboard">Upload Eyeball</Link>
<span></span>
<Link to="/admin/dashboard">Diagnostic Prediction</Link>
<Link to="/admin/dashboard">Reject Prediction</Link>
</nav>
<h1>Diabetic Retinopathy Diagnosis</h1>
{/* localhost */}
<Route exact path="/" component={EyeballLoadComp} />
<Route exact path="/diagnosis" component={EyeballDiagnosis} />
<Route exact path="/update/:eyeballId" component={UpdateEyeball} />
</div>
</Router>
);
I tried adding a span in there to give the links some space but it didn't work.
How do I fix this?