Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: remove-redundant-example-import #13175

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion examples/custom-server-express/pages/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import React from 'react'
import Link from 'next/link'

export default function Home() {
Expand Down
1 change: 0 additions & 1 deletion examples/custom-server-fastify/pages/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import React from 'react'
import Link from 'next/link'

export default function Home() {
Expand Down
2 changes: 0 additions & 2 deletions examples/custom-server-hapi/pages/a.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import React from 'react'

export default function A() {
return <div>a</div>
}
2 changes: 0 additions & 2 deletions examples/custom-server-hapi/pages/b.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import React from 'react'

export default function B() {
return <div>b</div>
}
1 change: 0 additions & 1 deletion examples/custom-server-hapi/pages/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import React from 'react'
import Link from 'next/link'

export default function Home() {
Expand Down
1 change: 0 additions & 1 deletion examples/custom-server-koa/pages/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import React from 'react'
import Link from 'next/link'

export default function Home() {
Expand Down
2 changes: 0 additions & 2 deletions examples/custom-server-polka/pages/a.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import React from 'react'

export default function A() {
return <div>a</div>
}
2 changes: 0 additions & 2 deletions examples/custom-server-polka/pages/b.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import React from 'react'

export default function B() {
return <div>b</div>
}
1 change: 0 additions & 1 deletion examples/custom-server-polka/pages/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import React from 'react'
import Link from 'next/link'

export default function Home() {
Expand Down
2 changes: 0 additions & 2 deletions examples/custom-server-typescript/pages/a.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import React from 'react'

export default function A() {
return <div>a</div>
}
2 changes: 0 additions & 2 deletions examples/custom-server-typescript/pages/b.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import React from 'react'

export default function B() {
return <div>b</div>
}
1 change: 0 additions & 1 deletion examples/custom-server-typescript/pages/index.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import React from 'react'
import Link from 'next/link'

export default function Home() {
Expand Down
2 changes: 0 additions & 2 deletions examples/ssr-caching/pages/blog/[id].js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import React from 'react'

export default function Post(props) {
return (
<div>
Expand Down
1 change: 0 additions & 1 deletion examples/svg-components/pages/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import React from 'react'
import Cat from '../svgs/cat.svg'

export default function Home() {
Expand Down
1 change: 0 additions & 1 deletion examples/using-preact/pages/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import React from 'react'
import Link from 'next/link'

export default function Home() {
Expand Down
1 change: 1 addition & 0 deletions examples/with-ant-design/pages/_app.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React from 'react'

import 'antd/dist/antd.css'
import '../styles/vars.css'
import '../styles/global.css'
Expand Down
1 change: 0 additions & 1 deletion examples/with-ant-design/pages/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import React from 'react'
import { Form, Select, InputNumber, Switch, Slider, Button } from 'antd'

// Custom DatePicker that uses Day.js instead of Moment.js
Expand Down
1 change: 0 additions & 1 deletion examples/with-zeit-fetch/pages/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import React from 'react'
import Link from 'next/link'
import fetch from '../fetch'

Expand Down