generated from jonmatum/react-mfe-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Documentation Index
GitHub Action edited this page Aug 24, 2025
·
4 revisions
Welcome to the React MFE Shell documentation! This wiki contains comprehensive guides and references for using and extending the design system.
- Home - Project overview and quick start
- Implementation Guide - Detailed implementation instructions
- Design Tokens - Comprehensive design token documentation
- GitHub Pages Setup - Demo deployment guide
# Install in your project
npm install @jonmatum/react-mfe-shell
# Or clone for development
git clone https://github.com/jonmatum/react-mfe-shell.git
cd react-mfe-shell
npm install
npm run devimport {
SettingsProvider,
Button,
Input,
Badge,
tokens
} from '@jonmatum/react-mfe-shell';
function App() {
return (
<SettingsProvider>
<Button variant="primary">Hello World</Button>
</SettingsProvider>
);
}npm run dev # Start development server
npm run build:lib # Build library
npm run build:demo # Build demo
npm run test:run # Run tests
npm run lint # Lint codeLast updated: $(date) Auto-synced from repository documentation
Getting Started
Design System
Deployment
Reference
Quick Install
npm install @jonmatum/react-mfe-shell