mirror of
https://github.com/ANL-CEEESA/UnitCommitment.jl.git
synced 2025-12-06 08:18:51 -06:00
19 lines
516 B
TypeScript
19 lines
516 B
TypeScript
/*
|
|
* UnitCommitment.jl: Optimization Package for Security-Constrained Unit Commitment
|
|
* Copyright (C) 2020-2025, UChicago Argonne, LLC. All rights reserved.
|
|
* Released under the modified BSD license. See COPYING.md for more details.
|
|
*/
|
|
|
|
import { ReactNode } from "react";
|
|
import styles from "./Form.module.css";
|
|
|
|
function Form({ children }: { children: ReactNode }) {
|
|
return (
|
|
<div className={styles.FormWrapper}>
|
|
<div className={styles.Form}>{children}</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default Form;
|