blob: 9914e89ca5ec8c1057525d0a46a382f5d92630e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import { useState } from "react";
import { GetString } from "../Locales/Locales";
function IndexElement() {
const [lang, setLang] = useState('en');
return (
<div>
<h1> {GetString("index", lang)} </h1>
</div>
);
}
export default IndexElement;
|