mirror of
https://github.com/pawelmalak/flame.git
synced 2025-07-25 22:09:36 +02:00
Initial commit
This commit is contained in:
commit
573814ddac
25 changed files with 18830 additions and 0 deletions
12
client/src/components/Themer/ThemePreview.tsx
Normal file
12
client/src/components/Themer/ThemePreview.tsx
Normal 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;
|
Loading…
Add table
Add a link
Reference in a new issue