1
0
mirror of https://github.com/Pomax/BezierInfo-2.git synced 2025-09-27 08:39:00 +02:00
Files
BezierInfo-2/components/localized/LocaleSwitcher/index.js
2017-02-18 13:45:26 -08:00

10 lines
255 B
JavaScript

var React = require('react');
var Locale = require("../../../lib/locale");
var locale = new Locale();
var page = "locale-switcher";
module.exports = function(props) {
return <div className="locale-switcher">{ locale.getContent(page, this) }</div>;
};