# babel-plugin-stateful-functional-react-components **Repository Path**: mirrors_xtuc/babel-plugin-stateful-functional-react-components ## Basic Information - **Project Name**: babel-plugin-stateful-functional-react-components - **Description**: Stateful functional React components without runtime overhead - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-26 - **Last Updated**: 2025-12-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # babel-plugin-stateful-functional-react-components ✨ _Stateful functional React components without runtime overhead (inspired by ClojureScript)_ ✨ _Compiles stateful functional React components syntax into ES2015 classes_ WARNING: _This plugin is experimental. If you are interested in taking this further, please open an issue or submit a PR with improvements._ [](https://www.npmjs.com/package/babel-plugin-stateful-functional-react-components) ## Why? Because functional components are concise and it's annoying to write ES2015 classes when all you need is local state. ## Advantages - No runtime overhead - No dependencies that adds additional KB's to your bundle ## Example __Input__ ```js // props context state init state const Counter = ({ text }, { theme }, { val } = { val: 0 }, setState) => (