├── .babelrc ├── .circleci └── config.yml ├── .gitignore ├── .nvmrc ├── LICENSE ├── README.md ├── TODO.md ├── assets ├── book-cover.jpg └── example.gif ├── package.json ├── reactsandbox.js ├── src ├── Types.js ├── __tests__ │ └── Types-test.js ├── escapeTextContent.js ├── index.js ├── jsxToString.js ├── parseReactElement.js └── withSandbox.js ├── styles └── default-theme.css └── webpack.config.babel.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphamorim/reactsandbox/HEAD/.babelrc -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphamorim/reactsandbox/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphamorim/reactsandbox/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | >=8 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphamorim/reactsandbox/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphamorim/reactsandbox/HEAD/TODO.md -------------------------------------------------------------------------------- /assets/book-cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphamorim/reactsandbox/HEAD/assets/book-cover.jpg -------------------------------------------------------------------------------- /assets/example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphamorim/reactsandbox/HEAD/assets/example.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphamorim/reactsandbox/HEAD/package.json -------------------------------------------------------------------------------- /reactsandbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphamorim/reactsandbox/HEAD/reactsandbox.js -------------------------------------------------------------------------------- /src/Types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphamorim/reactsandbox/HEAD/src/Types.js -------------------------------------------------------------------------------- /src/__tests__/Types-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphamorim/reactsandbox/HEAD/src/__tests__/Types-test.js -------------------------------------------------------------------------------- /src/escapeTextContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphamorim/reactsandbox/HEAD/src/escapeTextContent.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphamorim/reactsandbox/HEAD/src/index.js -------------------------------------------------------------------------------- /src/jsxToString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphamorim/reactsandbox/HEAD/src/jsxToString.js -------------------------------------------------------------------------------- /src/parseReactElement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphamorim/reactsandbox/HEAD/src/parseReactElement.js -------------------------------------------------------------------------------- /src/withSandbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphamorim/reactsandbox/HEAD/src/withSandbox.js -------------------------------------------------------------------------------- /styles/default-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphamorim/reactsandbox/HEAD/styles/default-theme.css -------------------------------------------------------------------------------- /webpack.config.babel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphamorim/reactsandbox/HEAD/webpack.config.babel.js --------------------------------------------------------------------------------