base.tsx 384 Bytes
Newer Older
李纪文's avatar
李纪文 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
 * @Author: ljiwen
 * @Date: 2024-10-15 09:46:58
 * @Description: 
 * @FilePath: \wisdom-components\packages\base-components\Gojs\src\demos\base.tsx
 */
import React, { useEffect } from 'react';

const GojsDemo = (props) => {
  return (
    <>
      <span>
        {`使用说明:import go from "@wisdom-components/gojs";`}
      </span>
    </>
  );
};
export default GojsDemo;