* Fixes round #1 * disabled any warning for intentional typing of AsyncReturnType * Whacked MetaMask add / remove button * types, not great, not terrible, better than any * Fixed typo in CheckboxField and wrapped description in <label> * Feedback Co-authored-by: Peer Richelsen <peeroke@gmail.com> Co-authored-by: zomars <zomars@me.com> Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
9 lines
289 B
TypeScript
9 lines
289 B
TypeScript
import { FC } from "react";
|
|
import { IntercomProvider } from "react-use-intercom";
|
|
|
|
const Provider: FC<{ children: React.ReactNode }> = ({ children }) => (
|
|
<IntercomProvider appId={process.env.NEXT_PUBLIC_INTERCOM_APP_ID || ""}>{children}</IntercomProvider>
|
|
);
|
|
|
|
export default Provider;
|