Skip to content

Commit

Permalink
Merge pull request #374 from cornell-dti/linear-progress-documentation
Browse files Browse the repository at this point in the history
Linear Progress documentation
  • Loading branch information
ggsawatyanon authored Oct 28, 2024
2 parents dfe54dd + f35a037 commit 7bb952b
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions frontend/src/components/utils/LinearProgress.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,16 @@ const useStyles = makeStyles((theme: Theme) =>
})
);

/**
* LinearIndeterminate Component – Displays a linear progress bar.
*
* @remarks
* This component provides a visual indication of an indeterminate loading process.
* It utilizes Material-UI's LinearProgress component.
*
* @return {ReactElement} The rendered LinearIndeterminate component with a centered linear progress bar.
*/

export default function LinearIndeterminate(): ReactElement {
const classes = useStyles();
return (
Expand Down

0 comments on commit 7bb952b

Please sign in to comment.