14 lines
187 B
TypeScript
14 lines
187 B
TypeScript
import "./App.scss";
|
|
|
|
import Screening from "./pages/Screening";
|
|
|
|
function App() {
|
|
return (
|
|
<main className="container">
|
|
<Screening />
|
|
</main>
|
|
);
|
|
}
|
|
|
|
export default App;
|