storylab / src /App.js
Ullaas's picture
Update src/App.js
33827f2 verified
raw
history blame contribute delete
311 Bytes
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>
);
}