docusaurus/lib/core/CompLibrary.js

22 lines
634 B
JavaScript
Raw Normal View History

2017-07-07 13:28:29 -04:00
/**
* Copyright (c) 2017-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*/
2017-07-10 19:38:35 -04:00
const Marked = require("./Marked.js");
const Container = require("./Container.js");
const GridBlock = require("./GridBlock.js");
const Prism = require("./Prism.js");
2017-07-07 13:28:29 -04:00
2017-08-15 19:55:38 -04:00
// collection of other components to provide to users
2017-07-07 13:28:29 -04:00
module.exports = {
Marked: Marked,
Container: Container,
GridBlock: GridBlock,
Prism: Prism
2017-07-10 19:38:35 -04:00
};