📜 Added configuration for jsdoc + better-docs

This commit is contained in:
2022-06-12 22:54:36 -07:00
parent f308ec0f01
commit 15c0840c63
12 changed files with 1694 additions and 77 deletions

View File

@@ -294,3 +294,5 @@ export const ComicDetail = (data: ComicDetailProps): ReactElement => {
</section>
);
};
export default ComicDetail;

View File

@@ -3,18 +3,6 @@ import React, { createContext, useEffect, useMemo, useState } from "react";
import { SETTINGS_SERVICE_BASE_URI } from "../constants/endpoints";
import AirDCPPSocket from "../services/DcppSearchService";
/**
* Component for setting up and sharing the AirDC++ socket context.
*
* @component
* @example
* const age = 21
* const name = 'Jitendra Nirnejak'
* return (
* <User age={age} name={name} />
* )
*/
const AirDCPPSocketContext = createContext({});
const AirDCPPSocketContextProvider = ({ children }) => {
const [airDCPPConfiguration, setValue] = useState({});

View File

View File