feat: 耕作履歴ページ作成(#112) (#177)

#112 現在ページの表示を太く

#112 完了

Co-authored-by: miteruzo <miteruzo@naver.com>
Reviewed-on: #177
This commit was merged in pull request #177.
This commit is contained in:
2025-12-14 03:49:03 +09:00
parent 9a656a9e6e
commit f36837f0d8
7 changed files with 220 additions and 0 deletions
+7
View File
@@ -29,6 +29,13 @@ export type Post = {
originalCreatedFrom: string | null
originalCreatedBefore: string | null }
export type PostTagChange = {
post: Post
tag: Tag
user?: User
changeType: 'add' | 'remove'
timestamp: string }
export type SubMenuItem =
| { component: ReactNode
visible: boolean }