mirror of
https://github.com/vercel/next.js.git
synced 2026-09-20 02:25:18 +08:00
832c77d01f
## What? 1. Rename the following examples. | Before | After | |--------|--------| | [app-dir-mdx](https://github.com/vercel/next.js/tree/canary/examples/app-dir-mdx) | mdx | | [with-mdx](https://github.com/vercel/next.js/tree/canary/examples/with-mdx) | mdx-pages | | [with-mdx-remote](https://github.com/vercel/next.js/tree/canary/examples/with-mdx-remote) | mdx-remote | 2. Change the example names at README.md in the repositories. 3. Update the mdx pathname in the test files. ## Why? ### Why remove `app-dir-` in the directory name? The default has already been App Router anyways and a lot of examples have migrated over. x-ref: https://github.com/vercel/next.js/pull/72642#issuecomment-2474415343 ### Why remove `with-` in the directory name? According to [examples guidelines](https://github.com/vercel/next.js/blob/canary/contributing/examples/adding-examples.md), > Example directories should not be prefixed with `with-` ## How did you verify your code works? I have tested the new [with-mdx.test.ts](https://github.com/vercel/next.js/blob/canary/test/e2e/yarn-pnp/test/with-mdx.test.ts) and [example.test.ts](https://github.com/vercel/next.js/blob/canary/test/examples/examples.test.ts). ### Adding or Updating Examples - [x] The "examples guidelines" are followed from our contributing doc https://github.com/vercel/next.js/blob/canary/contributing/examples/adding-examples.md - [x] Make sure the linting passes by running `pnpm build && pnpm lint`. See https://github.com/vercel/next.js/blob/canary/contributing/repository/linting.md CC: @samcx Co-authored-by: Sam Ko <sam@vercel.com>
17 lines
310 B
JavaScript
17 lines
310 B
JavaScript
export default function Button({ children }) {
|
|
return (
|
|
<button
|
|
style={{
|
|
borderRadius: "3px",
|
|
border: "1px solid black",
|
|
color: "black",
|
|
padding: "0.5em 1em",
|
|
cursor: "pointer",
|
|
fontSize: "1.1em",
|
|
}}
|
|
>
|
|
{children}
|
|
</button>
|
|
);
|
|
}
|