| 1234567891011 |
- import React from "react";
- import getSiteConfig, { SiteConfig } from "./getSiteConfig";
- export interface ContextProps {
- genre: GenreItem[];
- siteConfig: SiteConfig;
- }
- export const Context = React.createContext<ContextProps>({
- genre: [],
- siteConfig: getSiteConfig(),
- });
|