Spaces:
Configuration error
Configuration error
| import React, { useState } from "react"; | |
| import Layout from "./Layout"; | |
| import Landing from "./Landing"; | |
| import './App.css'; | |
| import StoryGenerator from "./StoryGenerator"; | |
| export default function App() { | |
| return ( | |
| <div> | |
| <h1>Animated Story Generator</h1> | |
| <StoryGenerator /> | |
| </div> | |
| ); | |
| } | |