-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
51 changed files
with
3,052 additions
and
1,610 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
2 changes: 1 addition & 1 deletion
2
kitchen-sink/src/big-grid-test.jsx → examples/kitchen-sink/src/big-grid-test.jsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
kitchen-sink/src/button-test.jsx → examples/kitchen-sink/src/button-test.jsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
kitchen-sink/src/owner-tree-test.jsx → ...ples/kitchen-sink/src/owner-tree-test.jsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
|
||
<title>React Scan</title> | ||
<meta name="title" content="React Scan" /> | ||
<meta | ||
name="description" | ||
content="React Scan automatically detects and highlights components that cause performance issues in your React app. Drop it in anywhere – script tag, npm, you name it!" | ||
/> | ||
|
||
<meta property="og:type" content="website" /> | ||
<meta property="og:url" content="https://react-scan.million.dev" /> | ||
<meta property="og:title" content="React Scan" /> | ||
<meta | ||
property="og:description" | ||
content="React Scan automatically detects and highlights components that cause performance issues in your React app. Drop it in anywhere – script tag, npm, you name it!" | ||
/> | ||
<meta | ||
property="og:image" | ||
content="https://react-scan.million.dev/banner.png" | ||
/> | ||
|
||
<meta property="twitter:card" content="summary_large_image" /> | ||
<meta property="twitter:url" content="https://react-scan.million.dev" /> | ||
<meta property="twitter:title" content="React Scan" /> | ||
<meta | ||
property="twitter:description" | ||
content="React Scan automatically detects and highlights components that cause performance issues in your React app. Drop it in anywhere – script tag, npm, you name it!" | ||
/> | ||
<meta | ||
property="twitter:image" | ||
content="https://react-scan.million.dev/banner.png" | ||
/> | ||
|
||
<link rel="preconnect" href="https://fonts.googleapis.com" /> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin /> | ||
<link | ||
href="https://fonts.googleapis.com/css2?family=Geist+Mono:[email protected]&family=Geist:[email protected]&display=swap" | ||
rel="stylesheet" | ||
/> | ||
|
||
<link rel="icon" href="/logo.svg" type="image/svg+xml" /> | ||
|
||
<meta | ||
name="keywords" | ||
content="react, performance, debugging, developer tools, web development, javascript" | ||
/> | ||
<meta name="author" content="Aiden Bai" /> | ||
<meta name="theme-color" content="#8b5cf6" /> | ||
<link rel="canonical" href="https://react-scan.million.dev" /> | ||
</head> | ||
<body> | ||
<div id="root"></div> | ||
<script type="module" src="/src/index.jsx"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"compilerOptions": { | ||
"module": "ESNext", | ||
"target": "ESNext" | ||
}, | ||
"exclude": [ | ||
"node_modules", | ||
"**/node_modules/*", | ||
"dist" | ||
], | ||
"moduleResolution": "NodeNext" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"private": "true", | ||
"scripts": { | ||
"dev": "vite", | ||
"build": "vite build", | ||
"preview": "vite preview" | ||
}, | ||
"dependencies": { | ||
"@vercel/analytics": "^1.4.0", | ||
"babel-plugin-react-compiler": "19.0.0-beta-a7bf2bd-20241110", | ||
"react": "19.0.0-rc.1", | ||
"react-dom": "19.0.0-rc.1", | ||
"bippy": "^0.1.1", | ||
"sugar-high": "^0.7.5", | ||
"vite-plugin-inspect": "^0.8.7" | ||
}, | ||
"devDependencies": { | ||
"@vitejs/plugin-react": "^4.3.1", | ||
"vite": "^5.4.3" | ||
} | ||
} |
Oops, something went wrong.