MADGTH Documentation

Build modern applications with our powerful framework. Learn how to install, configure, and use MADGTH effectively.

Getting Started

npm install madgth
yarn add madgth

After installation, you can import MADGTH in your JavaScript file:

import { core, utils } from 'madgth';

Usage

Basic Example

const app = new MADGTH.App({
    container: '#root',
    components: [MyComponent]
});

State Management

const store = createStore({
    initialState: { count: 0 },
    reducers: {
        increment(state) {
            return { count: state.count + 1 };
        }
    }
});

Resources