about summary refs log tree commit diff
path: root/src/components/Other/NoData.tsx
blob: c1236c11484343e6710415bbae5f5900f5de7217 (plain) (blame)
1
2
3
4
5
6
7
8
9
export default function NoData() {
	return (
		<>
			<div className="block bg-white-500 border border-gray-200 rounded-lg shadow">
				<div>No data</div>
			</div>
		</>
	)
}