@asgerami/zemenay-blog
Version:
Plug-and-play blog system for Next.js - Get a fully functional blog running in minutes with zero configuration
13 lines (12 loc) • 446 B
TypeScript
import React from "react";
/**
* Theme script that runs immediately to prevent flash of wrong theme
* This should be placed in the <head> of your document
*/
export declare function ThemeScript(): import("react/jsx-runtime").JSX.Element;
/**
* Theme provider that hydrates with the server-side applied theme
*/
export declare function ThemeProvider({ children }: {
children: React.ReactNode;
}): import("react/jsx-runtime").JSX.Element;