10 lines
127 B
TypeScript
10 lines
127 B
TypeScript
|
|
function SystemSetting() {
|
||
|
|
return (
|
||
|
|
<div>
|
||
|
|
<h1>System Setting</h1>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|
||
|
|
export default SystemSetting;
|