{
+ const [svg, setSvg] = useState
(null);
+
+ return (
+
+ Molecule Energy Simulator
+
+ This demonstrator will compute the ground state energy for a given
+ molecule using VQE algorithm. The molecule input is given in XYZ Format.
+
+
+
+
+ {svg && (
+
+
+
+ )}
+
+ );
+};
+
+export default MoleculeEnergySimulator;
diff --git a/src/pages/solve/FeatureModelAnomaly.tsx b/src/pages/solve/FeatureModelAnomaly.tsx
index 6d22ed1..fc3f772 100644
--- a/src/pages/solve/FeatureModelAnomaly.tsx
+++ b/src/pages/solve/FeatureModelAnomaly.tsx
@@ -49,7 +49,7 @@ const FeatureModelAnomaly: NextPage = () => {
{
problemTypeId="vrp"
text={vrp}
setText={setVrp}
- textPlaceholder={"Enter your Vehicle Routing problem in vrp format"}
+ textPlaceholder={"Enter your problem in vrp format"}
/>