mirror of
https://github.com/Pomax/BezierInfo-2.git
synced 2025-08-07 09:17:14 +02:00
10 lines
246 B
JavaScript
10 lines
246 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={ page }>{ locale.getContent(page, this) }</div>;
|
|
};
|