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/main.tsx

14 lines
334 B
TypeScript
Raw Normal View History

2024-05-13 03:29:40 -05:00
import 'node_modules/@create-figma-plugin/ui/lib/css/base.css';
2024-04-09 02:52:51 -05:00
import { StrictMode } from 'react';
import { createRoot } from 'react-dom/client';
2022-10-11 08:55:08 -05:00
import { App } from './App';
2024-04-12 11:52:19 -05:00
import './main.css';
import './reset.css';
2022-10-11 08:55:08 -05:00
2024-04-12 11:52:19 -05:00
createRoot(document.getElementById('root') as HTMLElement).render(
2024-04-09 02:52:51 -05:00
<StrictMode>
<App />
2024-04-09 02:52:51 -05:00
</StrictMode>
2022-10-11 08:55:08 -05:00
);