1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/frontend/src/component/common/Notifications/NotificationsList.tsx

15 lines
377 B
TypeScript
Raw Normal View History

import { List, styled } from '@mui/material';
import { FC } from 'react';
const StyledListContainer = styled(List)(({ theme }) => ({
padding: theme.spacing(1, 1, 3, 1),
}));
export const NotificationsList: FC = ({ children }) => {
return (
<StyledListContainer data-testid="NOTIFICATIONS_LIST">
{children}
</StyledListContainer>
);
};