import { FC } from "react"; import { BuilderLinkButton } from "../../../Shared/components/common/LinkButton"; interface InvalidCharacterProps { builderUrl: string; isReadonly: boolean; } export const InvalidCharacter: FC = ({ builderUrl, isReadonly, }) => { return (

Character Not Ready!

The current character is not accessible because it is missing either a{" "} Species, Class or{" "} Ability Scores.

{!isReadonly && ( <>

Return to the character builder to complete the character creation process.

Character Builder

)}
); };