import React from "react"; import { Link } from "react-router-dom"; import "./languages.css"; export function DocumentTranslations({ translations }) { const [showChoices, setShowChoices] = React.useState(false); function toggleOnHandler(event) { event.preventDefault(); setShowChoices(true); } function toggleOffHandler(event) { event.preventDefault(); setShowChoices(false); } return (