basic public key from private.

This commit is contained in:
fiatjaf
2022-02-11 16:47:50 -03:00
parent e7027c169a
commit 1d26118430
3 changed files with 30 additions and 2 deletions

View File

@@ -3,8 +3,9 @@ import {render} from 'react-dom'
import Nothing from './handlers/Nothing'
import EventSigning from './handlers/EventSigning'
import KeyHandling from './handlers/KeyHandling'
const handlers = [EventSigning, Nothing]
const handlers = [EventSigning, KeyHandling, Nothing]
function App() {
let [value, setValue] = useState(localStorage.getItem('value'))