0
Fork 0
mirror of https://github.com/penpot/penpot-exporter-figma-plugin.git synced 2024-12-22 13:43:03 -05:00
penpot-exporter-figma-plugin/ui-src/components/PenpotExporter.tsx

23 lines
630 B
TypeScript
Raw Permalink Normal View History

import { LoadingIndicator } from '@create-figma-plugin/ui';
import { LibraryError } from '@ui/components/LibraryError';
import { useFigmaContext } from '@ui/context';
import { ExportForm } from './ExportForm';
import { ExporterProgress } from './ExporterProgress';
import { PluginReload } from './PluginReload';
export const PenpotExporter = () => {
const { loading, needsReload, exporting, error } = useFigmaContext();
2024-05-31 06:28:44 -05:00
if (loading) return <LoadingIndicator />;
if (exporting) return <ExporterProgress />;
if (needsReload) return <PluginReload />;
if (error) return <LibraryError />;
return <ExportForm />;
};