import { Header3 } from '@app/components/general/header' import { Light as SyntaxHighlighter } from 'react-syntax-highlighter' import { a11yDark } from 'react-syntax-highlighter/dist/cjs/styles/hljs' import { SectionContainer } from '../containers/section-container' const codeString = `import { scan, multiPageScan } from "@a11ywatch/a11ywatch"; // single page website scan. const results = await scan({ url: "https://a11ywatch.com" }); console.log(results); // multi page website scan. const resultsAll = await multiPageScan({ url: "https://a11ywatch.com", subdomains: false, tld: false }); console.log(resultsAll); ` export const JavascriptUsage = () => { return (
Javascript Integration

Use npm or your favorite javascript package manager to install the suite.

{codeString}
) }