export default function BranchesEdit({ branch }: { branch: { name: string } }) {
    return (
        <div>
            <h1>Edit Branch {branch.name}</h1>
            <form>Placeholder</form>
        </div>
    );
}
