You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
792 B
33 lines
792 B
7 years ago
|
/**
|
||
|
* Copyright 2015-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.
|
||
|
*
|
||
|
* @emails react-core
|
||
|
*/
|
||
|
|
||
|
'use strict';
|
||
|
|
||
|
import navCommunity from '../../content/community/nav.yml';
|
||
|
import navDocs from '../../content/docs/nav.yml';
|
||
|
import navTutorial from '../../content/tutorial/nav.yml';
|
||
|
|
||
|
const sectionListDocs = navDocs.map(item => ({
|
||
|
...item,
|
||
|
directory: 'docs',
|
||
|
}));
|
||
|
|
||
|
const sectionListCommunity = navCommunity.map(item => ({
|
||
|
...item,
|
||
|
directory: 'community',
|
||
|
}));
|
||
|
|
||
|
export {
|
||
|
sectionListCommunity,
|
||
|
sectionListDocs,
|
||
|
navTutorial as sectionListTutorial,
|
||
|
};
|