mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2024-12-31 12:03:58 -05:00
c013e80962
* wip * moved logic to validate custom fonts * missing fonts section * lint * refactor and improve * simplify resize * refactor * Implemente custom fonts * styling plugin * styling plugin * minor styling fix * changeset * fix * fix eslint --------- Co-authored-by: Jordi Sala Morales <jordism91@gmail.com>
12 lines
256 B
TypeScript
12 lines
256 B
TypeScript
import Logo from '@ui/assets/logo.svg?react';
|
|
import { PenpotExporter } from '@ui/components/PenpotExporter';
|
|
|
|
export const App = () => (
|
|
<main>
|
|
<header>
|
|
<Logo />
|
|
<h2>Penpot Exporter</h2>
|
|
</header>
|
|
<PenpotExporter />
|
|
</main>
|
|
);
|