Skip to content

Commit 63ce8f9

Browse files
committed
fix: add button
1 parent f21958c commit 63ce8f9

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import React from "react";
2+
3+
type IParams = {
4+
openrpcDocument: any;
5+
method: string;
6+
}
7+
8+
export const TryNow: React.FC<IParams> = (params) => {
9+
return (
10+
<button class="button button--primary button--lg">Try It Now</button>
11+
)
12+
}
13+
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { TryNow } from "./TryNow";

0 commit comments

Comments
 (0)