Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | import BasicLayout from "main/layouts/BasicLayout/BasicLayout";
import { ProgressBar, Row, Col, Button } from "react-bootstrap";
import { Link } from "react-router";
export default function OnboardingSuccessPage() {
return (
<BasicLayout enableBootstrap={true}>
<Row>
<h1>Complete!</h1>
<p>Congratulations on completing the onboarding process!</p>
</Row>
<Row className="">
<Col xs="auto" className="text-center">
<Button as={Link} to="/">
Click here to return home
</Button>
</Col>
</Row>
<Row className="mt-auto pb-3">
<ProgressBar now={100} />
</Row>
</BasicLayout>
);
}
|