import React from "react"
import { Metadata } from "next"
import AddFolderContainer from "./section/AddFolderContainer"

export const metadata: Metadata = {
  title: "Documents",
}

export default function AddFolder() {
  return <AddFolderContainer />
}
