mirror of
https://github.com/nestriness/nestri.git
synced 2025-12-13 01:05:37 +02:00
20 lines
539 B
TypeScript
20 lines
539 B
TypeScript
import type { PartytownConfig } from "@builder.io/partytown/integration";
|
|
import { partytownSnippet } from "@builder.io/partytown/integration";
|
|
|
|
/**
|
|
* Props for `<QwikPartytown/>`, which extends the Partytown Config.
|
|
*
|
|
* https://github.com/BuilderIO/partytown#config
|
|
*
|
|
* @public
|
|
*/
|
|
export interface PartytownProps extends PartytownConfig {}
|
|
|
|
/**
|
|
* @public
|
|
* You can pass setting with props
|
|
*/
|
|
export const QwikPartytown = (props: PartytownProps): any => {
|
|
return <script dangerouslySetInnerHTML={partytownSnippet(props)} />;
|
|
};
|