Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion src/components/Layout/Layout.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, { useEffect } from "react";
import { Outlet, useLocation } from "react-router-dom";
import { SubHeader } from "../SubHeader/SubHeader";
import { Alert } from "@trussworks/react-uswds";
//import { Alert } from "@trussworks/react-uswds";
import Icons from "../../themes/epa_themes/images/sprite.svg";

export const Layout = () => {
Expand Down Expand Up @@ -52,6 +52,10 @@ export const Layout = () => {
return (
<div>
<SubHeader />

{/*
//Commented out Alert component for campd release
//This can be uncommented when needed
<Alert
type="info"
align="left"
Expand All @@ -70,6 +74,8 @@ export const Layout = () => {
</a>{" "}
to check it out.
</Alert>
*/}

<main style={{ maxWidth: "64rem", margin: "0 auto" }}>
<Outlet />
</main>
Expand Down
Loading