react-code-dataset / ant-design /index-with-locales.js
Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
307 Bytes
const antd = require('./components');
const req = require.context('./components', true, /^\.\/locale\/[A-Za-z]+_[A-Za-z]+\.tsx?$/);
antd.locales = {};
req.keys().forEach((mod) => {
const matches = mod.match(/\/([^/]+).tsx?$/);
antd.locales[matches[1]] = req(mod).default;
});
module.exports = antd;