import { appContext, ChangBits } from "./app.context.js"; import { CloudSVG, EditorSVG, HomeSVG, PreferencesSVG, SynchronizerSVG } from "./svg.js"; const { useContext } = React; export const Header: React.FC = () => { const { lang } = useContext(appContext, ChangBits.lang); return (
{lang.app.name}
); };