import React from "react"; import { useTheme } from "../Style/ThemeContext"; interface TurnBarProps{ text: string } const TurnBar: React.FC = ({text})=> { const theme = useTheme(); return (
{/* texte changeable et a traduire */}

{text}

); }; export default TurnBar;