mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-10 09:53:48 +00:00
67ddcd8c68
* feat/table add react-table * feat/table add protected table route * feat/table upgrade dependencies * feat/table support parsing of new properties Co-authored-by: DeepSource Bot <bot@deepsource.io>
14 lines
371 B
React
14 lines
371 B
React
import React from 'react';
|
|
import { ReactComponent as Emptyimage } from 'assets/images/empty.svg';
|
|
import style from './Empty.module.css';
|
|
|
|
export default function Empty(props) {
|
|
const { text } = props;
|
|
return (
|
|
<div className={style.emptyContainer}>
|
|
<Emptyimage className={style.empty} />
|
|
<span className={style.text}>{text}</span>
|
|
</div>
|
|
);
|
|
}
|