Files
image-studio/view/App.tsx
2026-07-03 10:01:02 +02:00

30 lines
947 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import type { ImageStudioApp } from "@app/app";
import { CanvasViewport } from "./CanvasViewport";
import { useAppState } from "./useAppState";
import "./index.css";
export type AppProps = {
app: ImageStudioApp;
};
export function App({ app }: AppProps) {
const state = useAppState(app.store);
const zoomPercent = Math.round(state.editor.viewport.zoom * 100);
return (
<main className="flex h-full flex-col bg-background text-foreground">
<header className="flex h-12 items-center justify-between border-b px-4">
<h1 className="font-semibold">Image Studio</h1>
<div className="text-sm text-muted-foreground">
{state.document.name} · {zoomPercent}% · {state.editor.viewport.size.w}×{state.editor.viewport.size.h}
</div>
</header>
<section className="min-h-0 flex-1 bg-muted">
<CanvasViewport store={app.store} />
</section>
</main>
);
}
export default App;