diff --git a/src/App.js b/src/App.js
index b3467c1..75d7482 100644
--- a/src/App.js
+++ b/src/App.js
@@ -1,59 +1,12 @@
-import { useEffect, useState, createRef } from 'react'
+import { useState } from 'react'
import { Excalidraw } from '@excalidraw/excalidraw'
-import './App.css'
+import MyAccount from './MyAccount'
import debounce from 'debounce'
+import './App.css'
const elemsPersisted = new Map()
let sceneInitialized = false
-function MyAccount() {
- const nameInput = createRef()
- const [loaded, setLoaded] = useState(false)
- const [id, setID] = useState('')
-
- useEffect(() => {
- window.electronAPI.loadAccount().then((account) => {
- setID(account.id)
- function tryToSetName() {
- if (nameInput.current) {
- nameInput.current.value = account.name
- setLoaded(true)
- } else {
- setTimeout(tryToSetName, 100)
- }
- }
- tryToSetName()
- })
- })
-
- const updateProfileName = debounce((ev) => {
- const sendableName = ev.target.value
- window.electronAPI.setProfileName(sendableName).then((name) => {
- nameInput.current.value = name
- })
- }, 2000)
-
- return (
- <>
-
-
- {loaded ? id : '50726f7061676174696f6e205a6f6e652050726f746f636f6c'}
-
- >
- )
-}
-
function App() {
const [excalidrawAPI, setExcalidrawAPI] = useState(null)
diff --git a/src/MyAccount.js b/src/MyAccount.js
new file mode 100644
index 0000000..fcde8a4
--- /dev/null
+++ b/src/MyAccount.js
@@ -0,0 +1,52 @@
+import { useEffect, useState, createRef } from 'react'
+import debounce from 'debounce'
+
+function MyAccount() {
+ const nameInput = createRef()
+ const [loaded, setLoaded] = useState(false)
+ const [id, setID] = useState('')
+
+ useEffect(() => {
+ window.electronAPI.loadAccount().then((account) => {
+ setID(account.id)
+ function tryToSetName() {
+ if (nameInput.current) {
+ nameInput.current.value = account.name
+ setLoaded(true)
+ } else {
+ setTimeout(tryToSetName, 100)
+ }
+ }
+ tryToSetName()
+ })
+ })
+
+ const updateProfileName = debounce((ev) => {
+ const sendableName = ev.target.value
+ window.electronAPI.setProfileName(sendableName).then((name) => {
+ nameInput.current.value = name
+ })
+ }, 2000)
+
+ return (
+ <>
+
+
+ {loaded ? id : '50726f7061676174696f6e205a6f6e652050726f746f636f6c'}
+
+ >
+ )
+}
+
+export default MyAccount