lis = this.state.NotesArr.map( (item, index) => {
				return (
				<div
				key={index}
				style={this.state.divbody}
				>	
					<button
					style={{width: 100, height: 20, marginTop:10, marginRight:5 }}
					onClick = {()=>{
						<PageOne data={item}/>
						this.props.history.push("/pageone");
					}}
					>Посмотреть	
					</button>
					<button
					style={{width: 100, height: 20, marginTop:5}}
					id={index}
					onClick = {this.deleteYou.bind(this)}
					>
					Удалить
					</button>
					<p>{item.snippet.title}</p>
					<p>{item.snippet.channelTitle}</p>
					<p>{item.snippet.description}</p>
					<iframe width="100" height="100" src="https://www.youtube.com/embed/"{item.id.videoId} frameborder="0" allowfullscreen></iframe>
				</div>)
			});
		}
Подскажите пожалуйста как вписать в конец адреса SRC переменную. В самом низу