Port 64d94f9e57e58f244e6f662e90ff143c9ba73dff to glitch-soc Signed-off-by: Claire <claire.github-309c@sitedethib.com>
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>
|
|
);
|