-
Notifications
You must be signed in to change notification settings - Fork 7
Feature/help texts #248
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
Feature/help texts #248
Conversation
src/components/Tooltip.tsx
Outdated
| import { Tooltip as MuiTooltip } from "@material-ui/core"; | ||
| import React from "react"; | ||
|
|
||
| export class Tooltip extends React.Component<any, any> { |
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.
make it as functional component
also avoid using any
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.
Ok, I tried to make it a functional component, seems to work.
README.md
Outdated
|
|
||
| - clone repo | ||
| - `npm i` | ||
| - `npm run build` |
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.
not sure that it's needed to run before local start
why would you need to run it?
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.
Right, works without. I removed it.
4b3b630 to
ec74879
Compare
ec74879 to
08ef4bb
Compare
pashidlos
left a comment
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.
LGTM!
Check especially the new help texts if they contain the correct information.
Replaces PR #247