Add @mailpoet/components package with a dummy testing component

[MAILPOET-5015]
This commit is contained in:
Jan Jakes
2023-01-24 16:12:54 +01:00
committed by Jan Jakeš
parent a31af24205
commit 790f3f4974
5 changed files with 48 additions and 0 deletions

View File

@ -0,0 +1,3 @@
export function Dummy(): JSX.Element {
return <div>Dummy component</div>;
}

View File

@ -0,0 +1 @@
export * from './dummy';