├── .gitignore ├── .prettierrc.js ├── INTRODUCTION.md ├── INTRODUCTION.zh-CN.md ├── LICENSE ├── README.md ├── README.zh-CN.md ├── create.d.ts ├── create.js ├── package.json └── pnpm-lock.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | singleQuote: true, 3 | }; 4 | -------------------------------------------------------------------------------- /INTRODUCTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanxiaobei/react-split-components/HEAD/INTRODUCTION.md -------------------------------------------------------------------------------- /INTRODUCTION.zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanxiaobei/react-split-components/HEAD/INTRODUCTION.zh-CN.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanxiaobei/react-split-components/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanxiaobei/react-split-components/HEAD/README.md -------------------------------------------------------------------------------- /README.zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanxiaobei/react-split-components/HEAD/README.zh-CN.md -------------------------------------------------------------------------------- /create.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanxiaobei/react-split-components/HEAD/create.d.ts -------------------------------------------------------------------------------- /create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanxiaobei/react-split-components/HEAD/create.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanxiaobei/react-split-components/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanxiaobei/react-split-components/HEAD/pnpm-lock.yaml --------------------------------------------------------------------------------