返回 reveal.js
reveal-context.ts
根目录 / react / src / reveal-context.ts
1 import { createContext } from 'react';
2 import type { RevealApi } from 'reveal.js';
3
4 export const RevealContext = createContext<RevealApi | null>(null);
5
5 lines TYPESCRIPT