@@ -8,32 +8,31 @@ import {
8
8
MockAuditLogWithWorkspaceBuild ,
9
9
MockUserOwner ,
10
10
} from "testHelpers/entities" ;
11
- import Table from "@mui/material/Table" ;
12
- import TableBody from "@mui/material/TableBody" ;
13
- import TableCell from "@mui/material/TableCell" ;
14
- import TableContainer from "@mui/material/TableContainer" ;
15
- import TableHead from "@mui/material/TableHead" ;
16
- import TableRow from "@mui/material/TableRow" ;
17
11
import type { Meta , StoryObj } from "@storybook/react-vite" ;
12
+ import {
13
+ Table ,
14
+ TableBody ,
15
+ TableCell ,
16
+ TableHead ,
17
+ TableRow ,
18
+ } from "components/Table/Table" ;
18
19
import { AuditLogRow } from "./AuditLogRow" ;
19
20
20
21
const meta :Meta < typeof AuditLogRow > = {
21
22
title :"pages/AuditPage/AuditLogRow" ,
22
23
component :AuditLogRow ,
23
24
decorators :[
24
25
( Story ) => (
25
- < TableContainer >
26
- < Table >
27
- < TableHead >
28
- < TableRow >
29
- < TableCell style = { { paddingLeft :32 } } > Logs</ TableCell >
30
- </ TableRow >
31
- </ TableHead >
32
- < TableBody >
33
- < Story />
34
- </ TableBody >
35
- </ Table >
36
- </ TableContainer >
26
+ < Table >
27
+ < TableHead >
28
+ < TableRow >
29
+ < TableCell style = { { paddingLeft :32 } } > Logs</ TableCell >
30
+ </ TableRow >
31
+ </ TableHead >
32
+ < TableBody >
33
+ < Story />
34
+ </ TableBody >
35
+ </ Table >
37
36
) ,
38
37
] ,
39
38
} ;