import { useUser } from '../hooks/use-user'
import { ResolutionOrChance } from './contract-card'
import { AvatarWithIcon } from './contract-feed'
import { Col } from './layout/col'
import { Title } from './title'
import Textarea from 'react-expanding-textarea'
export default function FeedCreate() {
const user = useUser()
if (!user) {
return
}
const question = 'Ask a question...'
const description =
'Resolves YES under no circumstances, but perhaps lorem ipsum will come and save the day!\nI kinda doubt it though...'
return (
{/* Text form to type a question */}
{/* TODO: Figure out how to get rid of border; but also show focus for accessibility */}
{/* "Create" button on the bottom right */}