pipi-cli 0.1.1

Pipi new app generator
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import React from "react";
import ReactDOM from "react-dom/client";
import { PipiSplash } from "./PipiSplash";

import "./index.css";

const root = document.getElementById("root");

if (!root) {
  throw new Error("No root element found");
}

ReactDOM.createRoot(root).render(
  <React.StrictMode>
    <PipiSplash />
  </React.StrictMode>,
);