Skip to content

Commit d9c67ce

Browse files
committed
Update Layout.js
1 parent cbeaca0 commit d9c67ce

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

src/react/src/theme/Layout.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
// src/theme/Layout.js
22
import React from 'react';
33
import OriginalLayout from '@theme-original/Layout';
4+
import CookieConsent from '../components/Consent/CookieConsent';
45

56
export default function Layout(props) {
6-
return <OriginalLayout {...props} />;
7+
return (
8+
<>
9+
<OriginalLayout {...props} />
10+
<CookieConsent />
11+
</>
12+
);
713
}

0 commit comments

Comments
 (0)