diff options
Diffstat (limited to 'src/components/Other/NoData.tsx')
-rw-r--r-- | src/components/Other/NoData.tsx | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/components/Other/NoData.tsx b/src/components/Other/NoData.tsx new file mode 100644 index 0000000..c1236c1 --- /dev/null +++ b/src/components/Other/NoData.tsx @@ -0,0 +1,9 @@ +export default function NoData() { + return ( + <> + <div className="block bg-white-500 border border-gray-200 rounded-lg shadow"> + <div>No data</div> + </div> + </> + ) +} |