feat: 기능 추가 과정중

This commit is contained in:
donghyeon-ka
2026-07-30 15:58:20 +09:00
parent d3ef801fe6
commit 6c52cdb916
648 changed files with 126325 additions and 6680 deletions
@@ -1,4 +1,4 @@
export function attachScript(source) {
export function attachScript(source: string) {
const script = document.createElement("script");
script.src = source;
document.head.append(script);
-1
View File
@@ -1 +0,0 @@
export const execute = (source) => eval(source);
+1
View File
@@ -0,0 +1 @@
export const execute = (source: string) => eval(source);
@@ -1,3 +1,3 @@
export function RawHtml({ value }) {
export function RawHtml({ value }: { value: string }) {
return <div dangerouslySetInnerHTML={{ __html: value }} />;
}