import { BackHeader, Text } from 'components'; import { StyleSystemThemedProps, SafeScreen, Container } from 'components/layout'; import { List } from 'components/notification'; export const Notification: React.FC = ({ variant, ...props }) => { return ( Notifications } /> ); }; type TopBarType = StyleSystemThemedProps & HappeningNowProps; type HappeningNowVariant = 'float' | 'surface'; interface HappeningNowProps { variant: HappeningNowVariant; }