We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f3f844 commit 8ddd7abCopy full SHA for 8ddd7ab
example/src/App.js
@@ -2,8 +2,14 @@ import React from "react";
2
3
import Contributors from "react-contributors";
4
5
+// Owner username.
6
+const owner = "evert-arias";
7
+
8
+// Repo(s) name. Single string or array with multiple repo names.
9
+const repos = ["EasyButton", "easybtn.earias.me"];
10
11
const App = () => {
- return <Contributors owner="evert-arias" repo="EasyButton" />;
12
+ return <Contributors owner={owner} repo={repos} />;
13
};
14
15
export default App;
0 commit comments