conjure-ui
v0.1.1
Published
React UI components
Readme
React components to invoke user interactions through a function.
Contains: delete confirmation, yes-no-cancel modal, toasts and a text input modal easily invoked through a function and without polluting your code.
See examples here: https://scheuermann-markus.github.io/ConjureUI/
🚀 Usage
Wrap your application with the ConjureProvider. In your layout.tsx (for NEXT.js projects) or App.tsx (for React projects)
import { ConjureProvider } from "conjure-ui";
export default function Layout({ children }: { children: React.ReactNode }) {
return (
<ConjureProvider>
{children}
</ConjureProvider>
);
}📜 License
This project is licensed under the ISC License.
🏗 Contributing
Contributions are welcome! Feel free to open an issue or submit a pull request.
