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.
19 lines
393 B
19 lines
393 B
import { useEffect, useRef, useState } from 'react';
|
|
import './App.css'
|
|
|
|
|
|
|
|
function App() {
|
|
|
|
|
|
return (
|
|
<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> */}
|
|
<a href="/free-flow">Free Flow</a>
|
|
<a href="/settings">Settings</a>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default App
|
|
|