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.

20 lines
329 B

10 months ago
  1. import { useContext, useMemo, useRef } from 'react'
  2. import { EditProvide } from '../context.ts'
  3. const PrimaryFacts = () => {
  4. const context = useContext(EditProvide)
  5. const formRef = useRef()
  6. const columns = useMemo(() => {
  7. return []
  8. }, [])
  9. return (
  10. <>
  11. </>
  12. )
  13. }
  14. export default PrimaryFacts