> ## Documentation Index
> Fetch the complete documentation index at: https://developer.box.com/llms.txt
> Use this file to discover all available pages before exploring further.

# ファイルの概要

export const Link = ({href, children, className, ...props}) => {
  const localizedHref = localizeLink(href);
  return <a href={localizedHref} className={className} {...props}>
      {children}
    </a>;
};

ファイルは、<Link href="/guides/folders">フォルダ</Link>とともに、Box APIの中核を成します。ファイルは<Link href="/guides/uploads">アップロード</Link>および<Link href="/guides/downloads">ダウンロード</Link>が可能で、コンテンツに関する重要なメタデータ情報を保持できます。
