import React from "react"; import { Coalition } from "../../types/types"; export function OlCoalitionToggle(props: { coalition: Coalition | undefined; onClick: () => void; }) { return (
); }