Echo eb07c0c439 [Glitch] Adds featured tab to web
Port 64d94f9e57e58f244e6f662e90ff143c9ba73dff to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
2025-05-03 16:11:43 +02:00

7 lines
282 B
TypeScript

import Trends from 'flavours/glitch/features/getting_started/containers/trends_container';
import { showTrends } from 'flavours/glitch/initial_state';
export const NavigationPortal: React.FC = () => (
<div className='navigation-panel__portal'>{showTrends && <Trends />}</div>
);