Skip to content

Commit

Permalink
docs: fix prettier error (#51182)
Browse files Browse the repository at this point in the history
  • Loading branch information
huozhi committed Jun 12, 2023
1 parent 0f5b191 commit 272ffff
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -110,16 +110,16 @@ export async function myAction() {
```
```jsx filename="app/client-component.jsx" highlight={1}
"use client"
'use client'

import { myAction } from './actions';
import { myAction } from './actions'

export default function ClientComponent() {
return (
<form action={myAction}>
<button type="submit">Add to Cart</button>
</form>
);
)
}
```
Expand Down

0 comments on commit 272ffff

Please sign in to comment.