import { useMemo } from 'react'; import { getData } from '../data'; import { Gantt, Fullscreen } from '../../src/'; 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;