#49 ぼちぼち

This commit is contained in:
2025-06-28 02:32:40 +09:00
parent ba1c1f1adf
commit 8020586ec6
19 changed files with 168 additions and 106 deletions
+3 -2
View File
@@ -1,6 +1,7 @@
import React, { useEffect, useState } from 'react'
import axios from 'axios'
import { API_BASE_URL } from '@/config'
import { Button } from '@/components/ui/button'
import type { Post, Tag } from '@/types'
@@ -64,9 +65,9 @@ export default ({ post, onSave }: Props) => {
</div>
{/* 送信 */}
<button onClick={handleSubmit}
<Button onClick={handleSubmit}
className="px-4 py-2 bg-blue-600 text-white rounded disabled:bg-gray-400">
</button>
</Button>
</div>)
}