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