Forked from an inaccessible project.
-
danieldeng2 authoreddanieldeng2 authored
ExampleExams.tsx 591 B
import React from "react";
import Jumbotron from "react-bootstrap/Jumbotron";
import Container from "react-bootstrap/Container";
import ButtonsShowcase from "components/molecules/Buttons";
import ToastsShowcase from "components/molecules/Toasts";
const ExamplePage: React.FC = () => {
return (
<Container className="p-3">
<Jumbotron>
<h1 className="header">
Welcome To Exams
</h1>
</Jumbotron>
<h2>Buttons</h2>
<ButtonsShowcase />
<h2>Toasts</h2>
<ToastsShowcase />
</Container>
);
};
export default ExamplePage;