Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
zahidkhawaja committed Jan 27, 2023
1 parent dca8193 commit a2bc236
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pages/index.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
import { useState, useRef, useEffect } from 'react'
import Head from 'next/head'
import styles from '../styles/Home.module.css'
import { useState, useRef, useEffect } from 'react'
import CircularProgress from '@mui/material/CircularProgress';
import ReactMarkdown from 'react-markdown'
import Image from 'next/image'
import ReactMarkdown from 'react-markdown'
import CircularProgress from '@mui/material/CircularProgress';

export default function Home() {

const [userInput, setUserInput] = useState("");
const [loading, setLoading] = useState(false);
const [history, setHistory] = useState([]);
const [loading, setLoading] = useState(false);
const [messages, setMessages] = useState([
{
"message": "Hi there! How can I help?",
Expand Down

1 comment on commit a2bc236

@vercel
Copy link

@vercel vercel bot commented on a2bc236 Jan 27, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.