projects
/
perfect-gift.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
e2b88b5e994a82a32cce4c7c07be94f287d7bef1
[perfect-gift.git]
/
frontend
/
src
/
App.js
1
import
React
from
'react'
;
2
import
Wishlist
from
'./Wishlist'
;
3
const
App
= () => {
4
return
(
5
<
div className
=
"App"
>
6
<
Wishlist id
=
"1"
/>
7
</
div
>
8
);
9
}
10
11
export default
App
;