Skip to content
Snippets Groups Projects
Commit 633ed103 authored by Alissa Cheng's avatar Alissa Cheng
Browse files

chore: remove unnecessary type

parent dcec01f1
No related branches found
No related tags found
1 merge request!21New components
Pipeline #70971 passed
import { Progress } from "@nextui-org/react";
type ProgressBarProps = {
value?: number | null;
value?: number;
};
const ProgressBar = ({ value = null }: ProgressBarProps) => {
const ProgressBar = ({ value }: ProgressBarProps) => {
return (
<Progress
isIndeterminate={!value}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment