Skip to content

Commit 671299b

Browse files
Muhammad Faraz  MaqsoodMuhammad Faraz  Maqsood
authored andcommitted
feat: add header & footer support on release notes page
1 parent bbc6861 commit 671299b

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

src/release-notes/ReleaseNotes.jsx

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
import React from 'react';
2+
import { StudioFooterSlot } from '@edx/frontend-component-footer';
23

3-
const ReleaseNotes = () => <h1>Welcome to release-notes!</h1>;
4+
import Header from '../header';
5+
6+
const ReleaseNotes = () => (
7+
<>
8+
<Header isHiddenMainMenu />
9+
<main className="page-content">
10+
<h1>Welcome to release-notes!</h1>
11+
</main>
12+
<StudioFooterSlot />
13+
</>
14+
);
415

516
export default ReleaseNotes;

0 commit comments

Comments
 (0)