aboutsummaryrefslogtreecommitdiff
path: root/demos/simple-react/src/index.tsx
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <jarred@jarredsumner.com> 2021-06-19 18:30:32 -0700
committerGravatar Jarred Sumner <jarred@jarredsumner.com> 2021-06-19 18:30:32 -0700
commit020ce327794089995f6b4511cfca1e949a7eab03 (patch)
tree86e7b6f5c98de857cfcbbbf292df777fd4c28a2a /demos/simple-react/src/index.tsx
parent0b68ccd7426d6b6cf35864db6e6d349839d67be4 (diff)
downloadbun-020ce327794089995f6b4511cfca1e949a7eab03.tar.gz
bun-020ce327794089995f6b4511cfca1e949a7eab03.tar.zst
bun-020ce327794089995f6b4511cfca1e949a7eab03.zip
color looper i'll probably get rid of
Former-commit-id: 5015c6a96964c23154509bc26633c18ce36aa9ff
Diffstat (limited to 'demos/simple-react/src/index.tsx')
-rw-r--r--demos/simple-react/src/index.tsx16
1 files changed, 3 insertions, 13 deletions
diff --git a/demos/simple-react/src/index.tsx b/demos/simple-react/src/index.tsx
index 41b0d56ac..3db53a67f 100644
--- a/demos/simple-react/src/index.tsx
+++ b/demos/simple-react/src/index.tsx
@@ -1,21 +1,11 @@
import ReactDOM from "react-dom";
import React from "react";
-import { Button } from "./components/button";
+import { Main } from "./main";
import classNames from "classnames";
const Base = ({}) => {
- return (
- <main className={classNames("main")}>
- <h3 className={classNames("hi")}>Here is some text</h3>
- <h3 className={classNames("extremely")}></h3>
- <>Fargment!1239899s</>
-
- <Button
- label="Do notencoding! cl1ick."
- onClick={() => alert("I told u not to click!")}
- ></Button>
- </main>
- );
+ const name = decodeURIComponent(location.search.substring(1));
+ return <Main productName={name || "Bundler"} />;
};
function startReact() {