mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-22 07:29:08 +00:00
refactor: empty state for cuesheet
This commit is contained in:
committed by
Carlos Valente
parent
9618bec847
commit
90105a199a
@@ -11,8 +11,7 @@ interface EmptyProps {
|
||||
className?: string;
|
||||
}
|
||||
|
||||
export default function Empty(props: EmptyProps) {
|
||||
const { text, className, ...rest } = props;
|
||||
export default function Empty({ text, className, ...rest }: EmptyProps) {
|
||||
return (
|
||||
<div className={cx([style.emptyContainer, className])} {...rest}>
|
||||
<EmptyImage className={style.empty} />
|
||||
|
||||
Reference in New Issue
Block a user