import React from 'react'; export function renderHeader(isCollapsed: string, text: string) { return isCollapsed ? (
{text}
) : (
{text}
); }