New HTTPServer rework, an actual dashboard (that isn't functional)

This commit is contained in:
Benjamin Elsdon
2022-05-02 20:50:02 +08:00
Unverified
parent a4da87c81b
commit 191704b39b
21 changed files with 361 additions and 205 deletions
@@ -0,0 +1,11 @@
import React from 'react'
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
export default function NavigationButton(props) {
return (
<div className='nav-button'>
<FontAwesomeIcon icon={props.icon} />
<p> {props.name} </p>
</div>
)
}