UNPKG

@memlab/e2e

Version:

memlab browser E2E interaction libraries

32 lines (29 loc) 757 B
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @format * @oncall memory_lab */ import {Head, Html, Main, NextScript} from 'next/document'; import React from 'react'; export default function Document() { return ( <Html> <Head> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@3.4.1/dist/css/bootstrap.min.css" integrity="sha384-HSMxcRTRxnN+Bdg0JdbxYKrThecOKuH5zCYotlSAcp1+c8xmyTe9GYg1l9a69psu" crossOrigin="anonymous" /> </Head> <body> <Main /> <NextScript /> </body> </Html> ); }