You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
langchain/docs/src/theme/DocItem/Content/index.js

14 lines
309 B
JavaScript

import React from "react";
import Content from "@theme-original/DocItem/Content";
import Feedback from "../../Feedback";
export default function ContentWrapper(props) {
return (
<>
{/* eslint-disable react/jsx-props-no-spreading */}
<Content {...props} />
<Feedback />
</>
);
}