Album page. Passing props through router.

This commit is contained in:
Rodrigo Pinto 2019-12-15 18:49:30 -05:00
commit afda11edcb
7 changed files with 681 additions and 9 deletions

13
src/views/Albums.jsx Normal file
View 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