Skip to content

Commit

Permalink
style(ui-common): update SplitView JSDoc
Browse files Browse the repository at this point in the history
  • Loading branch information
skamril committed Sep 10, 2024
1 parent 48c46dc commit d655968
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions webapp/src/components/common/SplitView/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ export interface SplitViewProps {
* @param props - The component props.
* @param props.id - Identifier to uniquely store the sizes of the panes.
* @param props.children - Child components to be rendered within the split views.
* @param props.direction - The orientation of the split view ("horizontal" or "vertical").
* @param props.sizes - Initial sizes of each view in percentages. The array must sum to 100 and match the number of children.
* @param props.gutterSize - The size of the gutter between split views. Defaults to 4.
* @param [props.direction=horizontal] - The orientation of the split view ("horizontal" or "vertical").
* @param [props.sizes] - Initial sizes of each view in percentages. The array must sum to 100 and match the number of children.
* @param [props.gutterSize=3] - The size of the gutter between split views.
* @returns A React component displaying a split layout view with resizable panes.
*/
function SplitView({
Expand Down

0 comments on commit d655968

Please sign in to comment.