This commit is contained in:
He4eT 2023-05-21 16:46:30 +03:00 committed by Alexey
commit 7a96d99055
21 changed files with 174 additions and 170 deletions

View file

@ -1,11 +1,11 @@
import { h } from 'preact'
export default function ({ themeEngine }) {
const options = themeEngine.themes.map(theme => (
export default function ThemeSelector ({ themeEngine }) {
const options = themeEngine.themes.map((theme) => (
<option
key={theme}
value={theme}>
{theme}
{theme}
</option>))
return (