Files
www.prothmann.com/components/forms/eanfrageforms/summary.jsx
Christian Anetzberger 01907eb338 Initial
2022-01-29 20:48:35 +01:00

11 lines
203 B
JavaScript

import React from "react";
import { TextInput, TextareaInput, SelectInput } from "../formfields.jsx";
export default function Summary(props) {
return (
<>
<h1>Übersicht</h1>
</>
);
}