This repository has been archived by the owner on Jan 14, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
My name... Is Josuke Higashikata... And my memories from when I was b…
…orn... Are long gone from this world... And they'll never... Come back... But even so, there's something I'm certain of. I am your son. No matter where I go, or what era I live in, that's something certain that I can believe in. Mom...
- Loading branch information
1 parent
2094719
commit bfc1fe9
Showing
4 changed files
with
40 additions
and
8 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
src/pages/main_page/internal_apps/apps/text_editor/text_editor.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import { AppInterface } from "../../App"; | ||
import App from "../../App"; | ||
|
||
export default function text_editor(file_selected: string | null) : AppInterface{ | ||
let update = async () => { | ||
|
||
} | ||
if (file_selected){ | ||
|
||
} | ||
let context_menu = <div> | ||
|
||
</div> | ||
let html = <div> | ||
<textarea> | ||
</textarea> | ||
</div> | ||
let [screen, set_display, fullscreen] = App(html, 'text editor'); | ||
return {screen, set_display, fullscreen, context_menu, update}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters