2022-10-12 14:40:37 +02:00
|
|
|
import { EventLog } from 'component/events/EventLog/EventLog';
|
|
|
|
import { useRequiredPathParam } from 'hooks/useRequiredPathParam';
|
|
|
|
import { styled } from '@mui/material';
|
|
|
|
|
|
|
|
const StyledDiv = styled('div')(({ theme }) => ({
|
|
|
|
borderRadius: '12.5px',
|
|
|
|
backgroundColor: theme.palette.background.paper,
|
|
|
|
padding: '2rem',
|
|
|
|
}));
|
|
|
|
|
|
|
|
export const ProjectLog = () => {
|
|
|
|
const projectId = useRequiredPathParam('projectId');
|
|
|
|
|
|
|
|
return (
|
|
|
|
<StyledDiv>
|
2023-10-02 14:25:46 +02:00
|
|
|
<EventLog title='Event Log' project={projectId} displayInline />
|
2022-10-12 14:40:37 +02:00
|
|
|
</StyledDiv>
|
|
|
|
);
|
|
|
|
};
|