"use client"; import React from 'react'; export default function SyncButton() { const handleSync = async () => { const res = await fetch('/api/sync'); const json = await res.json(); alert(json.message); }; return ( ); }