25 lines
799 B
TypeScript
25 lines
799 B
TypeScript
/* -------------------------------------------------------------------------- */
|
|
/* Libraries */
|
|
/* -------------------------------------------------------------------------- */
|
|
import React from "react";
|
|
import classNames from "classnames";
|
|
import Inputgroup from "components/Inputgroup";
|
|
import Header1 from "components/Header1";
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
/* Application root component */
|
|
/* -------------------------------------------------------------------------- */
|
|
/**
|
|
* Application root component
|
|
* @return {JSX.Element}
|
|
*/
|
|
function App() {
|
|
return (
|
|
<div>
|
|
<Header1 />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default App;
|