@logicflow/dumi-theme-simple
Version:
Simple website theme based on dumi2.
17 lines (16 loc) • 406 B
TypeScript
import { FC } from 'react';
import { IC } from '../../../types';
import '@logicflow/core/es/index.css';
import '@logicflow/extension/es/index.css';
type containerProps = {
title: IC;
engine?: IC;
description: IC;
buttons?: any;
githubUrl: string;
showGithubStars?: boolean;
features: any;
advantages: any;
};
export declare const LfContainer: FC<containerProps>;
export {};