/* -------------------------------------------------------------------------- */ /* Libraries */ /* -------------------------------------------------------------------------- */ import React from "react"; /* -------------------------------------------------------------------------- */ /* Application root component */ /* -------------------------------------------------------------------------- */ /** * Application root component * @return {JSX.Element} */ function App() { return ( <div>Hello world!</div> ); } export default App;