UNPKG

rsbuild-plugin-react-router

Version:
13 lines (10 loc) 263 B
import { createContext } from 'react'; import type { Context } from 'react'; export interface Assets { scriptTags: string[]; styleTags: string[]; } export const AssetsContext: Context<Assets> = createContext<Assets>({ scriptTags: [], styleTags: [], });