microsoft/hve-core

Public

mirrored fromhttps://github.com/microsoft/hve-coreAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
feat/docs-new-user

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

docs/docusaurus/src/theme/Footer/index.js

10lines · modecode

1import React from 'react';
2import Footer from '@theme-original/Footer';
3
4export default function FooterWrapper(props) {
5 return (
6 <>
7 <Footer {...props} />
8 </>
9 );
10}
11