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