Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
Zizzamia committed Feb 7, 2024
1 parent 2c720ee commit e67e7d5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ export default function HomePage() {
**@Props**

```ts
type Button =
type Button =
| {
action: 'link' | 'mint';
label: string;
Expand All @@ -125,7 +125,7 @@ type Button =
| {
action?: 'post' | 'post_redirect';
label: string;
};
};

type InputMetadata = {
text: string;
Expand Down Expand Up @@ -203,7 +203,7 @@ export async function POST(req: NextRequest): Promise<Response> {
**@Param**

```ts
type Button =
type Button =
| {
action: 'link' | 'mint';
label: string;
Expand All @@ -212,7 +212,7 @@ type Button =
| {
action?: 'post' | 'post_redirect';
label: string;
};
};

type InputMetadata = {
text: string;
Expand Down Expand Up @@ -368,7 +368,7 @@ export default function Page() {
**@Param**

```ts
type Button =
type Button =
| {
action: 'link' | 'mint';
label: string;
Expand All @@ -377,7 +377,7 @@ type Button =
| {
action?: 'post' | 'post_redirect';
label: string;
};
};

type InputMetadata = {
text: string;
Expand Down

0 comments on commit e67e7d5

Please sign in to comment.