initial scaffolding

This commit is contained in:
Nathanvititoe
2025-11-26 00:04:51 -05:00
parent fddad195e1
commit e99f6b9a46
39 changed files with 4536 additions and 0 deletions

View File

@ -0,0 +1,30 @@
import React from "react";
interface TicketTextProps {
label: string;
value: string;
onChange: (value: string) => void;
required?: boolean;
}
const TicketText: React.FC<TicketTextProps> = ({
label,
value,
onChange,
required,
}) => {
return (
<div className="detail-group full-width">
<label>{label}</label>
<textarea
rows={15}
value={value}
required={required}
onChange={e => onChange(e.target.value)}
/>
</div>
);
};
export default TicketText;