Skip to content

Commit 334eebd

Browse files
committed
chore: use className vs class
1 parent 63ce8f9 commit 334eebd

File tree

1 file changed

+4
-5
lines changed
  • packages/docusaurus-plugin/src/components/TryNow

1 file changed

+4
-5
lines changed

packages/docusaurus-plugin/src/components/TryNow/TryNow.tsx

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,10 @@ import React from "react";
33
type IParams = {
44
openrpcDocument: any;
55
method: string;
6-
}
6+
};
77

88
export const TryNow: React.FC<IParams> = (params) => {
99
return (
10-
<button class="button button--primary button--lg">Try It Now</button>
11-
)
12-
}
13-
10+
<button className="button button--primary button--lg">Try It Now</button>
11+
);
12+
};

0 commit comments

Comments
 (0)