import { RadioGroup } from '@headlessui/react' import { useState } from 'react' import { classNames } from '../../utils/class-names' export default function Home() { let access = [ { id: 'access-1', name: 'Public access', description: 'This project would be available to anyone who has the link', }, { id: 'access-2', name: 'Private to Project Members', description: 'Only members of this project would be able to access', }, { id: 'access-3', name: 'Private to you', description: 'You are the only one able to access this project', }, ] let [active, setActive] = useState() return (
) }