blob: 042ddb18dc94301e8430cc6521b832b03e3d9299 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import { useContext } from "react";
import { LanguageContext } from "../Locales/Context";
import { GetLocalizedString } from "../Locales/Locales";
function ClassesList() {
var lang = useContext(LanguageContext);
return (
<h1> {GetLocalizedString("Classes list", lang)} </h1>
);
}
export default ClassesList;
|