Localization helper for Japanese.
yarn add @technote-space/material-table-localization-jp
or
npm i @technote-space/material-table-localization-jp
e.g.
import type {FC} from 'react';
import {memo} from 'react';
import MaterialTable from '@technote-space/material-table';
import useLocalStorage from '@technote-space/material-table-localization-jp';
const TestTable: FC = memo(() => {
const tableLocalization = useTableLocalization();
// ...
return <MaterialTable
localization={tableLocalization}
// title={title}
// columns={columns}
// data={fetchData}
// ...
/>
});