Skip to content

Commit

Permalink
add FrontendComponent
Browse files Browse the repository at this point in the history
  • Loading branch information
cevro committed Oct 28, 2024
1 parent f2cfc66 commit a32ae2c
Show file tree
Hide file tree
Showing 24 changed files with 6,019 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
module.exports = {
"env": {
"browser": true,
"es2021": true
},
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 12,
"sourceType": "module"
},
"plugins": [
"react",
"@typescript-eslint"
],
"rules": {
}
};
Loading

0 comments on commit a32ae2c

Please sign in to comment.