The ultimate framework for building responsive, accessible, and performant web applications using only Tailwind CSS and JavaScript.
Build UIs using fundamental building blocks that work together like a well-orchestrated symphony.
Predictable state management that feels intuitive and responsive like a jazz improvisation.
Create fluid animations with declarative syntax that feels like conducting light and motion.
// muam/index.js
import { init, state, view } from 'muam';
const App = () => {
const count = state(0);
return view`
Counter: ${count}
`;
};
init(App);
Creates a reactive state variable
Arguments:
Returns: State object with
Runs effect after component renders
Arguments:
Note: Automatically cleans up on unmount