-
Notifications
You must be signed in to change notification settings - Fork 29
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
Create shared panels component #4006
Conversation
2c22405
to
f6c5d69
Compare
className: string | ||
} | ||
|
||
export const Panels: React.FC<PanelProps> = ({ className, panels }) => { |
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.
[F] The reason that I renamed this from Slider
is because we already have a slider => webview/src/shared/components/slider/Slider.tsx
f6c5d69
to
e02ed47
Compare
Code Climate has analyzed commit e02ed47 and detected 0 issues on this pull request. The test coverage on the diff in this pull request is 100.0% (85% is the threshold). This pull request will bring the total coverage in the repository to 95.2%. View more on Code Climate. |
2/4
main
<- #4005 <- this <- #4007 <- #4004This PR creates a shared
<Panels />
component that pulls the duplication out of what was previously the<CodeSlider />
and<StorageSlider />
(which have been renamed).