mirror of
https://github.com/facebook/docusaurus.git
synced 2025-05-05 13:17:23 +02:00
8 lines
186 B
JavaScript
8 lines
186 B
JavaScript
import React from 'react';
|
|
import Layout from '@theme/Layout';
|
|
|
|
export default class Docs extends React.Component {
|
|
render() {
|
|
return <Layout>{this.props.children}</Layout>;
|
|
}
|
|
}
|