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.

28 lines
542 B

/**
* Copyright (c) 2013-present, Facebook, Inc.
*
* @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,
};