13 lines
180 B
JavaScript
13 lines
180 B
JavaScript
import React from 'react'
|
|
|
|
function Albums({ props }) {
|
|
return (
|
|
<div className='albums'>
|
|
<h1>Albums</h1>
|
|
|
|
<p>{props}</p>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default Albums
|