mirror of
https://github.com/glitch-soc/mastodon.git
synced 2025-12-13 15:58:50 +00:00
7 lines
282 B
TypeScript
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>
|
|
);
|