mirror of
https://github.com/johndoe6345789/low-code-react-app-b.git
synced 2026-04-26 06:34:54 +00:00
13 lines
352 B
TypeScript
13 lines
352 B
TypeScript
import { FileCode } from '@phosphor-icons/react'
|
|
|
|
export function EmptyEditorState() {
|
|
return (
|
|
<div className="flex-1 flex items-center justify-center text-muted-foreground">
|
|
<div className="text-center">
|
|
<FileCode size={48} className="mx-auto mb-4 opacity-50" />
|
|
<p>Select a file to edit</p>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|