mirror of
https://github.com/tlsnotary/explorer.git
synced 2026-01-08 20:38:02 -05:00
20 lines
494 B
TypeScript
20 lines
494 B
TypeScript
import React, { ReactElement } from 'react';
|
|
import './index.scss';
|
|
import Header from '../../components/Header';
|
|
import FileDrop from '../../components/FileUpload';
|
|
import { Routes, Route } from 'react-router-dom';
|
|
import ProofSelect from '../../components/ProofSelect';
|
|
|
|
export default function App(): ReactElement {
|
|
|
|
|
|
return (
|
|
<div className="app flex flex-col gap-4">
|
|
<Header />
|
|
<Routes>
|
|
<Route path="/" element={<FileDrop />} />
|
|
</Routes>
|
|
</div>
|
|
);
|
|
}
|