@memeloop/react-ui
v0.1.1
Published
Reusable React UI components and prompt editor primitives for MemeLoop.
Readme
@memeloop/react-ui
Reusable React UI components and prompt-editor primitives for MemeLoop.
What is this package?
@memeloop/react-ui shares React components across MemeLoop Desktop and Mobile (where React Native is available). It is organized into platform-conditional subpaths:
@memeloop/react-ui– shared types and utilities@memeloop/react-ui/theme– theme tokens and helpers@memeloop/react-ui/web– web/Desktop components@memeloop/react-ui/native– React Native components@memeloop/react-ui/chat– chat UI primitives@memeloop/react-ui/agent– agent loop visualizers and prompt editor building blocks
Install
pnpm add @memeloop/react-ui
# or
npm install @memeloop/react-uiPeer dependencies depend on which subpaths you use. Typical web usage:
pnpm add react react-dom @mui/material @mui/icons-material @assistant-ui/reactUsage
import { ThemeProvider } from "@memeloop/react-ui/theme";
import { AgentChat } from "@memeloop/react-ui/web";
export function App() {
return (
<ThemeProvider>
<AgentChat />
</ThemeProvider>
);
}Development
pnpm install
pnpm --filter @memeloop/react-ui build
pnpm --filter @memeloop/react-ui testLicense
MIT
