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.
21 lines
329 B
21 lines
329 B
import { useContext, useMemo, useRef } from 'react'
|
|
import { EditProvide } from '../context.ts'
|
|
|
|
const PrimaryFacts = () => {
|
|
|
|
const context = useContext(EditProvide)
|
|
const formRef = useRef()
|
|
|
|
const columns = useMemo(() => {
|
|
|
|
return []
|
|
}, [])
|
|
|
|
return (
|
|
<>
|
|
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default PrimaryFacts
|