import type { FC } from 'react'; import React, { useContext } from 'react'; import { LiveContext } from 'dumi'; import { Alert, theme } from 'antd'; const LiveError: FC = () => { const { error } = useContext(LiveContext); const { token } = theme.useToken(); return error ? ( ) : null; }; export default LiveError;