manifold/web/components/create-question-button.tsx

14 lines
297 B
TypeScript
Raw Normal View History

2022-08-28 20:56:35 +00:00
import React from 'react'
import Link from 'next/link'
import { Button } from './button'
2022-07-19 23:15:55 +00:00
export const CreateQuestionButton = () => {
return (
<Link href="/create" passHref>
<Button color="gradient" size="xl" className="mt-4">
Create a market
</Button>
</Link>
)
}