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.

hace 10 meses
12345678910111213
  1. // 全局共享数据示例
  2. import { DEFAULT_NAME } from '@/constants';
  3. import { useState } from 'react';
  4. const useUser = () => {
  5. const [name, setName] = useState<string>(DEFAULT_NAME);
  6. return {
  7. name,
  8. setName,
  9. };
  10. };
  11. export default useUser;