UNPKG

186 BTypeScriptView Raw
1import { Component } from 'react';
2
3export interface NonceProviderProps {
4 nonce: string;
5 cacheKey: string;
6}
7
8export class NonceProvider extends Component<NonceProviderProps> {}