mirror of
https://github.com/facebook/docusaurus.git
synced 2025-06-19 11:12:36 +02:00
18 lines
389 B
Text
18 lines
389 B
Text
/**
|
|
* Copyright (c) 2017-present, Facebook, Inc.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
<% imports.forEach(({name, path}) => { %>
|
|
import <%= name %> from '<%= path %>';
|
|
<% }); %>
|
|
|
|
const contents = {
|
|
<% imports.forEach(({name}) => { %>
|
|
<%= name %>,
|
|
<% }); %>
|
|
};
|
|
|
|
export default contents;
|