Skip to content

Commit 3a2670b

Browse files
committed
feat: add pladyground config
1 parent 55f149d commit 3a2670b

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

playground/src/config.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
class Config {
2+
private _githubUrl = 'https://github.com/Ohh-889/soybean-react-ui';
3+
4+
get githubUrl() {
5+
return this._githubUrl;
6+
}
7+
}
8+
9+
const config = new Config();
10+
11+
export default config;

0 commit comments

Comments
 (0)