eslint fix

This commit is contained in:
He4eT 2021-07-22 14:49:31 +05:00
commit 1e0b16361f
10 changed files with 25 additions and 23 deletions

View file

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