Skip to content

Commit 0846d5b

Browse files
committed
run prettier
1 parent bed32bc commit 0846d5b

3 files changed

Lines changed: 4 additions & 11 deletions

File tree

playgrounds/react/app/[...slug]/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import fs from 'fs'
2-
import path from 'path'
32
import { notFound } from 'next/navigation'
3+
import path from 'path'
44
import { PageLoader } from './page-loader'
55

66
export default async function CatchAllPage({ params }: { params: Promise<{ slug: string[] }> }) {

playgrounds/react/page-examples/transitions/component-examples/dropdown.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { Transition } from '@headlessui/react'
2-
import { useState} from 'react'
2+
import { useState } from 'react'
33

44
export default function Home() {
55
return (

playgrounds/react/tsconfig.json

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
{
22
"compilerOptions": {
33
"target": "es5",
4-
"lib": [
5-
"dom",
6-
"dom.iterable",
7-
"esnext"
8-
],
4+
"lib": ["dom", "dom.iterable", "esnext"],
95
"allowJs": true,
106
"skipLibCheck": true,
117
"strict": false,
@@ -32,8 +28,5 @@
3228
".next/types/**/*.ts",
3329
".next/dev/types/**/*.ts"
3430
],
35-
"exclude": [
36-
"node_modules",
37-
"pages/tmp/issue/**/*.tsx"
38-
]
31+
"exclude": ["node_modules", "pages/tmp/issue/**/*.tsx"]
3932
}

0 commit comments

Comments
 (0)