/** * Copyright (c) 2013-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. * * @emails react-core */ 'use strict'; import {colors, media} from 'theme'; import isItemActive from 'utils/isItemActive'; import MetaTitle from '../MetaTitle'; import ChevronSvg from '../ChevronSvg'; const Section = ({ activeItemId, createLink, isActive, isScrollSync, location, onLinkClick, onSectionTitleClick, section, }) => (
{section.title}
); export default Section;