๐Ÿ“ฆ aquaticcalf / kanban

๐Ÿ“„ board.tsx ยท 41 lines
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
34
35
36
37
38
39
40
41import { useRouter } from "@/router/hook"

function Board() {
  const router = useRouter()
  const id = router.params.id as string

  const handleMouseDown = () => {
    router.goback()
  }

  return (
    <box alignItems="center" justifyContent="center" flexGrow={1}>
      <box justifyContent="center" alignItems="flex-start">
        <box
          marginTop={1}
          marginBottom={1}
          flexDirection="row"
          justifyContent="flex-start"
          flexGrow={1}
        >
          <box
            onMouseDown={handleMouseDown}
            backgroundColor="blue"
            paddingLeft={2}
            paddingRight={2}
            justifyContent="center"
            alignItems="center"
          >
            <text attributes={16 | 4}>back</text>
          </box>
        </box>

        <ascii-font font="tiny" text="board" />
        <text attributes={2}>board id : {id}</text>
      </box>
    </box>
  )
}

export default Board