-
-
Notifications
You must be signed in to change notification settings - Fork 32.5k
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
[test] Use public api in lab #25682
[test] Use public api in lab #25682
Conversation
Should we do the same in the core? |
Yes, ideally we would use the public API for the test inside the core as well. Although would propose doing it in separate PR. |
@mnajdova Well, I'll be working on that during the day. |
@@ -1,2 +1,5 @@ | |||
export { default } from './TabPanel'; | |||
export * from './TabPanel'; | |||
|
|||
export { default as tabPanelClasses } from './tabPanelClasses'; |
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.
Nice
For the files Example: - import { PaperProps } from '../Paper';
+ import { PaperProps } from '@material-ui/core/Paper'; and - import { Theme } from '..'
+ import { Theme } from '@material-ui/core/styles' ? |
@vicasas only if the import is coming from another package. |
Merging this one, so that next PRs can reference the correct imports |
Corresponds to comment #25666 and comment #25666