import React from "react"; interface ManagePageProps { isActive: boolean; saveSheet: () => void; loadSheet: () => void; exportSheet: () => void; handleImportFile: (e: React.ChangeEvent) => void; importFileRef: React.RefObject; copyShareURL: () => Promise; copyStatus: boolean; } export default function ManagePage({ isActive, saveSheet, loadSheet, exportSheet, handleImportFile, importFileRef, copyShareURL, copyStatus, }: ManagePageProps) { return (
Local Save

Save your character sheet to your browser's local storage, or load a previously saved sheet.

JSON File

Export your character to a JSON file for backup or sharing, or import from a previously exported file.

Share via URL

Encode your character's current state into a shareable link. Anyone who opens the link will see your character — auto-save is disabled for viewers.

Copied!
); }