Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
change react example to vite
  • Loading branch information
KingSora committed Nov 25, 2022
1 parent 3b6843e commit 4c4d0ae
Show file tree
Hide file tree
Showing 17 changed files with 1,699 additions and 27,803 deletions.
27 changes: 0 additions & 27 deletions examples/angular/README.md

This file was deleted.

41 changes: 21 additions & 20 deletions examples/react/.gitignore
@@ -1,23 +1,24 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# production
/build

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
46 changes: 0 additions & 46 deletions examples/react/README.md

This file was deleted.

13 changes: 13 additions & 0 deletions examples/react/index.html
@@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + React + TS</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>

0 comments on commit 4c4d0ae

Please sign in to comment.