Website for showcasing all features of Tesseract Web.
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 

14 rader
345 B

  1. import * as goober from 'goober';
  2. import * as gooberPrefixer from 'goober/prefixer';
  3. import type { AppProps } from 'next/app';
  4. import * as React from 'react';
  5. goober.setup(React.createElement, gooberPrefixer.prefix);
  6. const App: React.VFC<AppProps> = ({ Component, pageProps }) => {
  7. return <Component {...pageProps} />
  8. }
  9. export default App