diff --git a/common/app/App.jsx b/common/app/App.jsx
index fa54b2fd28..11dde49f91 100644
--- a/common/app/App.jsx
+++ b/common/app/App.jsx
@@ -10,6 +10,7 @@ import {
isSignedInSelector
} from './redux';
+import Flash from './Flash';
import Nav from './Nav';
import Toasts from './Toasts';
import NotFound from './NotFound';
@@ -60,12 +61,9 @@ export class FreeCodeCamp extends React.Component {
route
} = this.props;
const Child = routes[route] || NotFound;
- // we render nav after the content
- // to allow the panes to update
- // redux store, which will update the bin
- // buttons in the nav
return (
+
diff --git a/common/app/Flash/Flash.jsx b/common/app/Flash/Flash.jsx
new file mode 100644
index 0000000000..5e9834296b
--- /dev/null
+++ b/common/app/Flash/Flash.jsx
@@ -0,0 +1,21 @@
+import React from 'react';
+import { CloseButton } from 'react-bootstrap';
+
+import ns from './ns.json';
+
+const propTypes = {};
+export default function Flash() {
+ return (
+