2017-07-07 13:28:29 -04:00
|
|
|
/**
|
|
|
|
|
* Copyright (c) 2017-present, Facebook, Inc.
|
|
|
|
|
*
|
2017-10-05 14:14:49 -04:00
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
2017-07-07 13:28:29 -04:00
|
|
|
*/
|
|
|
|
|
|
2017-12-04 22:21:02 -05:00
|
|
|
const MarkdownBlock = require('./MarkdownBlock.js');
|
|
|
|
|
const Container = require('./Container.js');
|
|
|
|
|
const GridBlock = require('./GridBlock.js');
|
2017-07-07 13:28:29 -04:00
|
|
|
|
2017-10-30 18:47:13 -04:00
|
|
|
// A collection of components to provide to users
|
2017-07-07 13:28:29 -04:00
|
|
|
module.exports = {
|
2017-10-30 18:47:13 -04:00
|
|
|
MarkdownBlock: MarkdownBlock,
|
2017-07-07 13:28:29 -04:00
|
|
|
Container: Container,
|
2017-12-04 22:21:02 -05:00
|
|
|
GridBlock: GridBlock,
|
2017-07-10 19:38:35 -04:00
|
|
|
};
|