-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MATRIX-5759 integration with others property react sdk #5
MATRIX-5759 integration with others property react sdk #5
Conversation
import {IControlProp} from "../Interfaces"; | ||
|
||
|
||
export const ControlComponent = (props: IControlProp) => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would put the type definition (IControlProp) in the react control file so you can use it as documentation (and also they are typically not shared)
tsconfig.json
Outdated
}, | ||
"paths": { | ||
}, | ||
|
||
"include": [ | ||
"src/*.ts", "src/**/*.ts", | ||
|
||
"src/*.tsx", "src/**/*.tsx" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
src/**/*.tsx
should be sufficient, src/*.tsx
is the same AFAIK
No description provided.