```ts // CustomDocumentationComponent.ts|tsx import React from 'react'; export const CustomDocumentationComponent: React.VFC<{}> = () => { return (

Replacing DocsPage with a custom component

The Docs page can be customized with your own custom content written as a React Component.

Write your own code here👇

); }; ```