You don't even need to use registerLocale, just use import variable name ja without quotes :
You can also set the default locale for all date picker fields with setDefaultLocale :
constructor (props) {
registerLocale("ja", ja);
setDefaultLocale("ja");
}
Hope this helps.