1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-07-25 22:09:36 +02:00

Initial commit

This commit is contained in:
unknown 2021-05-06 19:03:31 +02:00
commit 573814ddac
25 changed files with 18830 additions and 0 deletions

View file

@ -0,0 +1,12 @@
import { Theme } from '../../interfaces/Theme';
const ThemePreview = (theme: Theme): JSX.Element => {
return (
<div>
<p>Theme: {theme.name}</p>
<p>{theme.colors.background}</p>
</div>
)
}
export default ThemePreview;