File size: 256 Bytes
b9fe2b4
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
import { useCallback } from 'react';

export function useOpenDocument() {
  const openDocument = useCallback(() => {
    window.open(
      'https://ragflow.io/docs/dev/category/agent-components',
      '_blank',
    );
  }, []);

  return openDocument;
}