Better map

This commit is contained in:
cracklesparkle
2024-10-29 15:08:23 +09:00
parent 115c6ec417
commit f51835584d
20 changed files with 685 additions and 444 deletions

View File

@ -1,7 +1,7 @@
import { GridColDef } from '@mui/x-data-grid'
import { useEffect, useState } from 'react'
import { useBoilers } from '../hooks/swrHooks'
import { Badge, Flex, Table, Text } from '@mantine/core'
import { Badge, ScrollAreaAutosize, Table, Text } from '@mantine/core'
function Boilers() {
const [boilersPage, setBoilersPage] = useState(1)
@ -33,7 +33,7 @@ function Boilers() {
]
return (
<Flex direction='column' gap='sm' p='sm'>
<ScrollAreaAutosize w={'100%'} h={'100%'} p='sm'>
<Text size="xl" fw={600}>
Котельные
</Text>
@ -78,7 +78,7 @@ function Boilers() {
</Table.Tbody>
</Table>
}
</Flex>
</ScrollAreaAutosize>
)
}