I found `SequencePrefixIdProvider` provided at [here](https://github.com/kufu/smarthr-ui/blob/master/src/hooks/useId.tsx#L23), and used around DatePicker component like this. ```javascript # at pages/index.js import { DatePicker, SequencePrefixIdProvider } from 'smarthr-ui'; export default function Home() { return ( <SequencePrefixIdProvider> <DatePicker /> </SequencePrefixIdProvider> ) } ``` but it raises hydration error like this. <img width="1213" alt="image" src="https://user-images.githubusercontent.com/15419/171765756-6514374d-b78e-4145-84c7-7a95dd752372.png"> ### Versions I use those libraries. ``` "next": "12.1.6", "react": "18.1.0", "react-dom": "18.1.0", "smarthr-ui": "21.1.0", ``` ### How To Reproduce * Minimal reproducible example is below. * https://github.com/ryan5500/smarthrui-v21-1-0-datepicker ### Related Information * React 18 introduce their `useId` hook. * https://reactjs.org/blog/2022/03/29/react-v18.html#useid * maybe it would be fix this problem.