mirror of
https://github.com/tlsnotary/tlsn-plugin-demo.git
synced 2026-01-08 21:08:13 -05:00
17 lines
422 B
TypeScript
17 lines
422 B
TypeScript
import React, { ReactElement } from 'react';
|
|
import './index.scss';
|
|
import Header from '../../components/Header';
|
|
import Body from '../../components/Body';
|
|
import { Routes, Route } from 'react-router-dom';
|
|
|
|
export default function App(): ReactElement {
|
|
return (
|
|
<div className="app flex flex-col gap-4">
|
|
<Header />
|
|
<Routes>
|
|
<Route path="/" element={<Body />} />
|
|
</Routes>
|
|
</div>
|
|
);
|
|
}
|