first run after refactor of back and frontends

This commit is contained in:
NPS Agent
2026-05-11 13:42:26 +09:30
parent 84d36826bc
commit 3825c7556b
2 changed files with 121 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
with open('screens.jsx', 'r') as f:
lines = f.readlines()
out = []
for line in lines:
if line.startswith('function DatabaseInspector'):
break
out.append(line)
out.append('Object.assign(window, {\n')
out.append(' LoginScreen, TopBar, OverviewScreen, UserScreen, AddTaskModal, Modal, TaskDetail, AuditScreen, HeadsUp, BrandMark,\n')
out.append(' SettingsScreen,\n')
out.append('});\n')
with open('screens.jsx', 'w') as f:
f.writelines(out)