mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-09 06:55:47 +01:00
10 lines
169 B
JavaScript
10 lines
169 B
JavaScript
|
|
import React, { Component } from "react";
|
||
|
|
|
||
|
|
class Config extends Component {
|
||
|
|
render() {
|
||
|
|
return <div>Here, Config will be shown</div>;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
export default Config;
|