soiz1's picture
Upload 2891 files
6bcb42f verified
raw
history blame contribute delete
421 Bytes
import React from 'react';
import styles from './vote-frame.css';
const VoteFrame = props => (
<iframe
className={styles.frame}
style={props.id != '0' ? {} : { display: 'none' }}
src={
props.id != '0'
? `https://penguinmod.com/embed/vote?id=${props.id}#dark=${props.darkmode}`
: 'about:blank'
}
></iframe>
);
export default VoteFrame;