div in usagestats

This commit is contained in:
DirkSchlossmacher 2023-11-14 09:22:20 +01:00
parent 595cf6bf46
commit 4bc8c73d66

View File

@ -46,6 +46,7 @@ const UsageStats: React.FC<{ onClose: () => void }> = ({ onClose }) => {
</select>
<p>Number of events: {signInCount}</p>
<button onClick={handleDrillDown}>Drill-down</button>
<div>
{showDrillDown && (
@ -73,6 +74,7 @@ const UsageStats: React.FC<{ onClose: () => void }> = ({ onClose }) => {
</button>
</div>
</div>
</div>
);
};