import React, { useState, useEffect } from 'react'; import Test from './components/test'; import ImageGenerationForm from './components/sdxl'; import Original from './components/original'; import Header from './Header'; import './App.css'; function PromptPage({ isVisible }) { const handleButtonClick = () => { // Calculate the scroll position to scroll to half the page const halfPageScroll = window.innerHeight * 0.8; //console.log(window.scroll) // Scroll down to half the page window.scrollTo({ top: 1000, behavior: 'smooth', // Add smooth scrolling animation }); }; return ( <>
{/* */}

LOADING

); } export default PromptPage;