🛂(app-desk) add TeamActions component

TeamActions is a component that control the actions
that a member can performed on the team.
It contains a dropdown menu that contains the actions:
- Edit Team
- Remove Team
This commit is contained in:
Anthony LC
2024-03-26 16:21:18 +01:00
committed by Anthony LC
parent 73e58e274c
commit 6b2fb4169c
8 changed files with 215 additions and 16 deletions

View File

@@ -15,6 +15,12 @@ module.exports = {
rules: { ...common.globalRules, '@next/next/no-html-link-for-pages': 'off' },
overrides: [
...common.eslintTS,
{
files: ['**/*.ts'],
rules: {
'@typescript-eslint/no-unsafe-member-access': 'off',
},
},
{
files: ['*.spec.*', '*.test.*', '**/__mock__/**/*'],
extends: ['plugin:playwright/recommended'],