Skip to content

Commit 6b118d7

Browse files
committed
Meh
1 parent fbd2d8e commit 6b118d7

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

tests/reacttest/pages/_app.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { AppProps } from 'next/app'
1+
import type { AppProps } from "next/app"
22

33
// eslint-disable-next-line prefer-arrow/prefer-arrow-functions
44
function MyApp({ Component, pageProps }: AppProps) {

tests/reacttest/pages/api/hello.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Next.js API route support: https://nextjs.org/docs/api-routes/introduction
2-
import type { NextApiRequest, NextApiResponse } from 'next'
2+
import type { NextApiRequest, NextApiResponse } from "next"
33

44
type Data = {
55
name: string
@@ -10,5 +10,5 @@ export default function handler(
1010
req: NextApiRequest,
1111
res: NextApiResponse<Data>
1212
) {
13-
res.status(200).json({ name: 'John Doe' })
13+
res.status(200).json({ name: "John Doe" })
1414
}

tests/reacttest/pages/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import type { NextPage } from 'next'
1+
import type { NextPage } from "next"
22
import { range } from "linq-to-typescript"
3-
import { ChangeEvent, useState } from 'react'
3+
import { ChangeEvent, useState } from "react"
44

55
const generateNumbers = (max: number) => {
66
const primeNumbers = range(2, max)

0 commit comments

Comments
 (0)