@technote-space/material-table-localization-jp
v0.1.24
Published
Localization helper for Japanese.
Downloads
52
Readme
Material Table Localization for JP
Localization helper for Japanese.
Table of Contents
Usage
Install
yarn add @technote-space/material-table-localization-jp
or
npm i @technote-space/material-table-localization-jp
Use
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}
// ...
/>
});