-
Notifications
You must be signed in to change notification settings - Fork 0
/
demo.tsx
33 lines (32 loc) · 989 Bytes
/
demo.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import * as React from 'react';
import Box from '@mui/material/Box';
import Card from '@mui/material/Card';
import CardContent from '@mui/material/CardContent';
import Grid from '@mui/material/Grid';
import { Typography } from '@mui/material';
export default function BasicCard() {
return (
<Card>
<CardContent>
<Grid container spacing={2}>
<Grid
sx={{
mt: 2,
}}
item
xs={6}
>
<Typography>New Conflict Check</Typography>
<Typography>Amount : 300000</Typography>
</Grid>
<Grid item xs={6} sx={{ textAlign: 'right' }}>
<Typography>New Conflict Check</Typography>
<Typography>Amount : 300000</Typography>
<Typography>New Conflict Check</Typography>
<Typography>Amount : 300000</Typography>
</Grid>
</Grid>
</CardContent>
</Card>
);
}