1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-07-20 12:09:36 +02:00
flame/client/src/components/Themer/ThemePreview.tsx

12 lines
242 B
TypeScript
Raw Normal View History

2021-05-06 19:03:31 +02:00
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;