import { useMemo } from 'react'; import { getData } from '../data'; import { Gantt } from '../../src/'; import { Fullscreen } from '@svar-ui/react-core'; import './GanttFullscreen.css'; function GanttFullscreen({ skinSettings }) { const data = useMemo(() => getData(), []); return (

Click the "expand" icon, or click on Gantt and press Ctrl+Shift+F

); } export default GanttFullscreen;