import React from "react"; export const ConfigErrorPage = () => { return (
Configuration Error

{""} {" "} is not initialized. Please make sure you have it mounted in your app and placed your components inside it.

); }; const ExampleImplementation = () => { return (
      import {"{"} Refine, WelcomePage{" "}
      {"}"} from{" "}
      {'"@refinedev/core"'};{"\n"}
      {"\n"}
      export{" "}
      default{" "}
      
        function{" "}
        App
        (
        ){" "}
      
      {"{"}
      {"\n"}
      {"  "}
      return ({"\n"}
      {"    "}
      
        
          <
          Refine
          {"\n"}
          {"      "}
          
            {"// "}
            ...
          
          {"\n"}
          {"    "}>
        
        {"\n"}
        {"      "}
        
          {"{"}
          {"/* ... */"}
          {"}"}
        
        {"\n"}
        {"      "}
        
          <
          WelcomePage />
        
        {"\n"}
        {"      "}
        
          {"{"}
          {"/* ... */"}
          {"}"}
        
        {"\n"}
        {"    "}
        
          </
          Refine
          >
        
      
      {"\n"}
      {"  "});{"\n"}
      {"}"}
    
); }; const ErrorGradient = (props: React.SVGProps) => ( ); const ErrorIcon = (props: React.SVGProps) => ( );