Skip to content

Commit

Permalink
Merge pull request #38 from MFB-Technologies-Inc/37-convert-the-examp…
Browse files Browse the repository at this point in the history
…le-app-to-vite

37: convert the example app to vite
  • Loading branch information
lemke-ethan authored Apr 9, 2024
2 parents 7eb2d90 + 417dabd commit a798f0f
Show file tree
Hide file tree
Showing 35 changed files with 3,470 additions and 31,447 deletions.
22 changes: 22 additions & 0 deletions example-app/.eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
/*
* Copyright 2024 MFB Technologies, Inc.
*/

module.exports = {
root: true,
env: { browser: true, es2020: true },
extends: [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:react-hooks/recommended"
],
ignorePatterns: ["dist", ".eslintrc.cjs"],
parser: "@typescript-eslint/parser",
plugins: ["react-refresh"],
rules: {
"react-refresh/only-export-components": [
"warn",
{ allowConstantExport: true }
]
}
}
24 changes: 24 additions & 0 deletions example-app/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# 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?
2 changes: 1 addition & 1 deletion example/README.md → example-app/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# example
# example app

Example of how to use the exports of `@mfbtech/react-async-renderer`.

Expand Down
17 changes: 17 additions & 0 deletions example-app/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<!--
Copyright 2024 MFB Technologies, Inc.
-->

<!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>Examples</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
Loading

0 comments on commit a798f0f

Please sign in to comment.