File size: 264 Bytes
1f7780e
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
import React from 'react';
import Root from '@theme-original/Root';
import StructuredData from '@site/src/components/StructuredData';

export default function RootWrapper(props) {
  return (
    <>
      <StructuredData />
      <Root {...props} />
    </>
  );
}