import React from 'react'; import { CommonTabPageRendererProps } from './CommonTabPage'; import { SiteUtils } from '../site/SiteUtils'; /** * Common logo list tab page * @param props Props * @returns Component */ export function CommonLogoListPage(props: CommonTabPageRendererProps) { // Destruct const { tab, articles, noDescription } = props; // Layout return ( {!noDescription && tab.description && (
{tab.description}
)}
{articles.map((article) => (
{article.title}
))}
); }