docusaurus/v2/lib/core/metadata.template.ejs
2019-03-10 19:08:36 -07:00

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;