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