@hostv2hp/common
Advanced tools
Comparing version 1.0.75 to 1.0.76
@@ -10,2 +10,34 @@ "use strict"; | ||
const codeNew = { | ||
"/styles.css": { | ||
code: ``, | ||
hidden: true, | ||
}, | ||
"/index.js": { | ||
code: `import React, { StrictMode } from "react"; | ||
import { createRoot } from "react-dom/client"; | ||
import App from "./App"; | ||
const root = createRoot(document.getElementById("root")); | ||
root.render( | ||
<StrictMode> | ||
<App /> | ||
</StrictMode> | ||
);`, | ||
hidden: true, | ||
readOnly: true, | ||
}, | ||
"/public/index.html": { | ||
code: `<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Document</title> | ||
</head> | ||
<body> | ||
<div id="root"></div> | ||
</body> | ||
</html>`, | ||
hidden: true, | ||
readOnly: true, | ||
}, | ||
"/App.js": { | ||
@@ -12,0 +44,0 @@ code: `import React from "react"; |
{ | ||
"name": "@hostv2hp/common", | ||
"version": "1.0.75", | ||
"version": "1.0.76", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "./build/index.js", |
26832
762