English | 简体中文
yarn add @react-devui/ui @react-devui/icons @react-devui/hooks @react-devui/utils
import type { DRootProps } from '@react-devui/ui'; import { useMemo } from 'react'; import { DRoot } from '@react-devui/ui'; export default function App() { const rootContext = useMemo<DRootProps['context']>( () => ({ layout: { pageScrollEl: '#app-main', contentResizeEl: '#app-content' }, }), [] ); return ( <DRoot context={rootContext}> <main id="app-main" style={{ overflow: 'auto' }}> <section id="app-content" style={{ height: '200vh' }}> Some content... </section> </main> </DRoot> ); }
Please read our contributing guide first.
Need unit test support (Jest) 🤝.