Dejvino's Curriculum Vitae
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

14 行
344 B

  1. 'use client'
  2. import React from 'react';
  3. import { createContext } from 'react';
  4. import { Person } from '../../Person';
  5. export const PersonContext = createContext(Person);
  6. export function PersonProvider({ children }) {
  7. return (
  8. <PersonContext.Provider value={Person}>
  9. {children}
  10. </PersonContext.Provider>
  11. )
  12. }