Update, built Contact Page

This commit is contained in:
2018-03-10 21:26:44 +11:00
parent ceb48e104c
commit c24c29c899
33 changed files with 1041 additions and 134 deletions

View File

@ -0,0 +1,22 @@
import enAU from './en-AU.jsx';
const LANGUAGES = {
'en-AU': enAU
}
class Language {
constructor() {
this.setLanguage("en-AU");
}
setLanguage(lang) {
this.data = LANGUAGES[lang];
}
get(key) {
}
}
const lang = new Language();
export default lang;

View File

@ -0,0 +1,3 @@
module.exports = {
""
}