initial commit

This commit is contained in:
2021-04-06 15:03:44 +02:00
commit 606832a141
21 changed files with 9238 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
import React from 'react'
import { render } from 'react-dom'
import '../base.css'
import Field from './Field'
const Settings = () => {
return (
<div>
<h3 className="ma0 mb2">Settings</h3>
<form>
<fieldset className="ma0 pa0">
<Field setting="every" />
<Field setting="duration" />
<Field setting="autoClose" />
<Field setting="boot" />
</fieldset>
</form>
</div>
)
}
export default Settings