Skip to content

Commit

Permalink
Merge pull request #9 from InteropIO/platform-in-frame
Browse files Browse the repository at this point in the history
Platform in frame
  • Loading branch information
flashd2n authored Aug 2, 2024
2 parents 2a7944b + 8bceecb commit a15f95e
Show file tree
Hide file tree
Showing 18 changed files with 5,517 additions and 0 deletions.
18 changes: 18 additions & 0 deletions browser-platform-wsp-frame/.eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
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 },
],
},
}
26 changes: 26 additions & 0 deletions browser-platform-wsp-frame/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# 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?

./src/config.json
2 changes: 2 additions & 0 deletions browser-platform-wsp-frame/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Browser Platform in a Workspaces Frame
This project provides a starter for React based io.Connect Browser application in a Workspaces Frame.
13 changes: 13 additions & 0 deletions browser-platform-wsp-frame/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="./public/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>io.Connect Browser</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
Loading

0 comments on commit a15f95e

Please sign in to comment.