diff --git a/frontend/src/layouts/EntryPointLayout.js b/frontend/src/layouts/EntryPointLayout.js new file mode 100644 index 00000000..88319d46 --- /dev/null +++ b/frontend/src/layouts/EntryPointLayout.js @@ -0,0 +1,9 @@ +import React from "react"; + +const EntryPointLayout = (props) => { + return props.children; +}; + +export const getLayout = (page) => {page}; + +export default EntryPointLayout;