create data bank and component list

This commit is contained in:
Ehsan
2024-10-10 02:50:58 +03:30
parent 2a98790ffd
commit 66d3395f59
5 changed files with 38 additions and 4 deletions
@@ -0,0 +1,9 @@
import React from 'react'
function List() {
return (
<div>List</div>
)
}
export default List
+5 -1
View File
@@ -1,9 +1,13 @@
import Head from "./head";
import List from "./List";
function Bank({ data }) {
console.log(data);
function Bank() {
return (
<div>
<Head />
<List />
</div>
);
}