There was an error while loading. Please reload this page.
1 parent cbeaca0 commit d9c67ceCopy full SHA for d9c67ce
1 file changed
src/react/src/theme/Layout.js
@@ -1,7 +1,13 @@
1
// src/theme/Layout.js
2
import React from 'react';
3
import OriginalLayout from '@theme-original/Layout';
4
+import CookieConsent from '../components/Consent/CookieConsent';
5
6
export default function Layout(props) {
- return <OriginalLayout {...props} />;
7
+ return (
8
+ <>
9
+ <OriginalLayout {...props} />
10
+ <CookieConsent />
11
+ </>
12
+ );
13
}
0 commit comments