Files
MingdaOS/src/apps/Trash.tsx

13 lines
521 B
TypeScript
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
export default function Trash() {
return (
<div style={{ padding: 40, color: '#fff', textAlign: 'center' }}>
<div style={{ fontSize: 64, marginBottom: 16 }}>🗑</div>
<h2 style={{ fontSize: 18, fontWeight: 600, marginBottom: 8 }}>Trash</h2>
<p style={{ fontSize: 13, color: 'rgba(255,255,255,0.4)', marginBottom: 20 }}>The trash is empty.</p>
<p style={{ fontSize: 12, color: 'rgba(255,255,255,0.2)', fontStyle: 'italic' }}>
just like my social life
</p>
</div>
);
}