diff --git a/web/app/components/BankAccount.tsx b/web/app/components/BankAccount.tsx
new file mode 100644
index 0000000..272e5cc
--- /dev/null
+++ b/web/app/components/BankAccount.tsx
@@ -0,0 +1,46 @@
+
+import React from 'react'
+import styles from './bankAccount.module.css'
+import Image from 'next/image'
+import BankAccountInfoLine from './BankAccountInfoLine'
+
+export default function BankAccount(props) {
+
+ const infoLines = []
+ props.infoLines.forEach((infoLine) => {
+ infoLines.push(
+