This commit is contained in:
Marta Kowalska
2025-12-22 20:22:30 +00:00
parent d4429300aa
commit bb81e7a336
90 changed files with 3676 additions and 1828 deletions
+3 -6
View File
@@ -1,6 +1,7 @@
import { useMemo } from 'react';
import { getData } from '../data';
import { Gantt, Fullscreen } from '../../src/';
import { Gantt } from '../../src/';
import { Fullscreen } from '@svar-ui/react-core';
import './GanttFullscreen.css';
function GanttFullscreen({ skinSettings }) {
@@ -11,11 +12,7 @@ function GanttFullscreen({ skinSettings }) {
<h4>Click the "expand" icon, or click on Gantt and press Ctrl+Shift+F</h4>
<div className="wx-0qqHrQ85 gtcell">
<Fullscreen hotkey="ctrl+shift+f">
<Gantt
{...skinSettings}
tasks={data.tasks}
links={data.links}
/>
<Gantt {...skinSettings} tasks={data.tasks} links={data.links} />
</Fullscreen>
</div>
</div>