-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add barebones belbin matching tool package #12
- Loading branch information
1 parent
5892eba
commit 9a1653e
Showing
7 changed files
with
60 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"name": "elite-belbin-matcher", | ||
"version": "1.0.0", | ||
"private": true, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"types": "dist/index.d.ts", | ||
"main": "dist/index.js", | ||
"scripts": { | ||
"clean": "rm -rf dist/ node_modules/ tsconfig.tsbuildinfo" | ||
}, | ||
"devDependencies": { | ||
"@types/react": "^16.9.11", | ||
"@types/react-router": "^5.1.3", | ||
"elite-types": "^1.0.0" | ||
}, | ||
"dependencies": { | ||
"react": "^16.12.0" | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
packages/belbin-matcher/src/components/belbinMatcherPage.component.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import * as React from 'react'; | ||
import { RouteComponentProps } from 'react-router'; | ||
|
||
export interface BelbinMatcherPageProps extends RouteComponentProps {} | ||
|
||
export const BelbinMatcherPage = (props: BelbinMatcherPageProps) => <div>Hier könnte Ihre Werbung stehen</div>; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export * from './components/belbinMatcherPage.component'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"extends": "../../tsconfig.base.json", | ||
"compilerOptions": { | ||
"rootDir": "src", | ||
"outDir": "dist", | ||
"baseUrl": "src" | ||
}, | ||
"include": ["src/**/*"], | ||
"references": [ | ||
{ | ||
"path": "../types" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,9 @@ | |
{ | ||
"path": "../feature-flags" | ||
}, | ||
{ | ||
"path": "../belbin-matcher" | ||
}, | ||
{ | ||
"path": "../types" | ||
} | ||
|