--- /** * VotingResultsChart - Interactive visualization for voting results * Supports all voting methods with method-specific visualizations */ interface Props { proposalId; } const { proposalId } = Astro.props; ---