reset commits
This commit is contained in:
commit
cf5af3cc23
55 changed files with 6825 additions and 0 deletions
|
|
@ -0,0 +1,18 @@
|
|||
import './PasswordManagerComponent.sass'
|
||||
import { AiTwotonePlusCircle } from 'solid-icons/ai'
|
||||
import { createSignal, createEffect } from 'solid-js'
|
||||
import Input from '../../Input/Input'
|
||||
import AddItem from '../../AddItem/AddItem.tsx'
|
||||
|
||||
const [passwords, setPasswords] = createSignal('')
|
||||
|
||||
export default () => {
|
||||
return (
|
||||
<section class="section">
|
||||
<div>
|
||||
<Input label="Username" value={passwords()} onChange={setPasswords} />
|
||||
<AddItem />
|
||||
</div>
|
||||
</section>
|
||||
)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue