feat(image): add page
This commit is contained in:
23
app/project/detail/TaskBoardContainer.tsx
Normal file
23
app/project/detail/TaskBoardContainer.tsx
Normal file
@@ -0,0 +1,23 @@
|
||||
"use client"
|
||||
|
||||
import { Paper, Stack, Text } from "@mantine/core"
|
||||
|
||||
export default function TaskBoardContainer() {
|
||||
return (
|
||||
<Paper
|
||||
withBorder
|
||||
p="md"
|
||||
radius="md"
|
||||
style={{
|
||||
borderColor:
|
||||
"light-dark(var(--mantine-color-gray-4), var(--mantine-color-dark-4))",
|
||||
}}>
|
||||
<Stack gap="xs">
|
||||
<Text fw={700}>统计信息</Text>
|
||||
<Text size="sm" c="dimmed">
|
||||
暂未迁移统计看板,可在后续按需补齐。
|
||||
</Text>
|
||||
</Stack>
|
||||
</Paper>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user