You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
393 B

6 months ago
import { useEffect, useRef, useState } from 'react';
6 months ago
import './App.css'
function App() {
return (
6 months ago
<div className='w-full flex flex-row gap-2 justify-center py-2 px-8 *:bg-pink-200 *:px-2'>
<a href="/">Conversation</a>
{/* <a href="/flow">Flow</a> */}
5 months ago
<a href="/free-flow">Free Flow</a>
6 months ago
<a href="/settings">Settings</a>
</div>
6 months ago
)
}
export default App