@tnf-dev/mui
This package contains the Material UI components used in the Teknify project.
Installation
To install the package, run the following command:
npm install @tnf-dev/react @tnf-dev/mui
Usage
To use the components from this package, you can import them into your React application as follows:
import { TeknifyProvider } from '@tnf-dev/react';
import { TeknifyMuiInbox } from '@tnf-dev/mui';
const MyComponent = () => {
return (
<TeknifyProvider applicationId='<YOUR_APPLICATION_ID>' subscriberId='<USER_SUBSCRIBER_ID>'>
<TeknifyMuiInbox />
</TeknifyProvider>
);
};