All checks were successful
Deploy / Deploy to Production (push) Successful in 6s
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
11 lines
199 B
TypeScript
11 lines
199 B
TypeScript
import type { FormData } from '../types';
|
|
|
|
export const formData: FormData = $state({
|
|
text: "",
|
|
parentId: null
|
|
});
|
|
|
|
export const reset = () => {
|
|
formData.text = ""
|
|
formData.parentId = null
|
|
}
|