Spaces:
Running
Running
File size: 421 Bytes
f2bee8a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
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;
|