changes to structure

This commit is contained in:
Fran Jurmanović
2021-08-03 15:43:11 +02:00
parent 70ff75b0f8
commit 6b152d320c
95 changed files with 1342 additions and 1124 deletions

View File

@@ -0,0 +1,14 @@
import { html, TemplateResult } from 'core/utils';
export default ({ errorMessage }): TemplateResult => html`
<app-form data-custom="wallet-edit#onSubmit" data-has-cancel="true" data-target="wallet-edit.appForm">
<input-field
data-type="text"
data-name="name"
data-label="Name"
data-targets="wallet-edit.inputs"
data-rules="required"
></input-field>
${errorMessage ? html`<div>${errorMessage}</div>` : html``}
</app-form>
`;