File size: 328 Bytes
dad4133
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import React, { useState } from "react";
import Layout from "./Layout";
import Landing from "./Landing";

export default function App() {
  const [selectedPrompt, setSelectedPrompt] = useState("");

  return (
    <Layout onPromptSelect={setSelectedPrompt}>
      <Landing initialPrompt={selectedPrompt} />
    </Layout>
  );
}