├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── assets └── logo.svg ├── bsconfig.json ├── package.json ├── src └── ReactToastify.res └── yarn.lock /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescriptbr/rescript-toastify/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescriptbr/rescript-toastify/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescriptbr/rescript-toastify/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescriptbr/rescript-toastify/HEAD/README.md -------------------------------------------------------------------------------- /assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescriptbr/rescript-toastify/HEAD/assets/logo.svg -------------------------------------------------------------------------------- /bsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescriptbr/rescript-toastify/HEAD/bsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescriptbr/rescript-toastify/HEAD/package.json -------------------------------------------------------------------------------- /src/ReactToastify.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescriptbr/rescript-toastify/HEAD/src/ReactToastify.res -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescriptbr/rescript-toastify/HEAD/yarn.lock --------------------------------------------------------------------------------