From 82d858a2398b3c81d810835b94236d7a62994249 Mon Sep 17 00:00:00 2001 From: Mist Date: Mon, 19 Feb 2024 22:51:39 +0800 Subject: [PATCH] [Update] empty code placeholder --- snap-client/src/app.tsx | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/snap-client/src/app.tsx b/snap-client/src/app.tsx index 552b6cf..bf141fa 100644 --- a/snap-client/src/app.tsx +++ b/snap-client/src/app.tsx @@ -10,14 +10,7 @@ import { ControlBar, Editor, Frame, Panel } from "./components"; import { useConfig, useEvent } from "./hooks"; import { toPng, toJpeg, toBlob, toPixelData, toSvg } from "html-to-image"; -const CODE_EMPTY_PLACEHOLDER = ` - ██████╗ ██████╗ ██████╗ ███████╗███████╗███╗ ██╗ █████╗ ██████╗ -██╔════╝██╔═══██╗██╔══██╗██╔════╝██╔════╝████╗ ██║██╔══██╗██╔══██╗ -██║ ██║ ██║██║ ██║█████╗ ███████╗██╔██╗ ██║███████║██████╔╝ -██║ ██║ ██║██║ ██║██╔══╝ ╚════██║██║╚██╗██║██╔══██║██╔═══╝ -╚██████╗╚██████╔╝██████╔╝███████╗███████║██║ ╚████║██║ ██║██║ - ╚═════╝ ╚═════╝ ╚═════╝ ╚══════╝╚══════╝╚═╝ ╚═══╝╚═╝ ╚═╝╚═╝ -`; +const CODE_EMPTY_PLACEHOLDER = `print "Hello, CodeSnap.nvim!"`; function App() { const [socketUrl] = useState("ws://127.0.0.1:8080/ws");