13 lines
289 B
TypeScript
13 lines
289 B
TypeScript
|
|
import Output from "../components/Output/Output";
|
||
|
|
|
||
|
|
const SystemSettings = () => {
|
||
|
|
return (
|
||
|
|
<div className="mx-auto grid grid-cols-1 sm:grid-cols-1 lg:grid-cols-2 gap-2 px-2 sm:px-4 lg:px-0 w-full">
|
||
|
|
<Output />
|
||
|
|
<Output />
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
};
|
||
|
|
|
||
|
|
export default SystemSettings;
|