Album page. Passing props through router.
This commit is contained in:
parent
32899d3bed
commit
afda11edcb
7 changed files with 681 additions and 9 deletions
13
src/views/Albums.jsx
Normal file
13
src/views/Albums.jsx
Normal file
|
@ -0,0 +1,13 @@
|
|||
import React from 'react'
|
||||
|
||||
function Albums({ props }) {
|
||||
return (
|
||||
<div className='albums'>
|
||||
<h1>Albums</h1>
|
||||
|
||||
<p>{props}</p>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
export default Albums
|
Loading…
Add table
Add a link
Reference in a new issue