mirror of
https://github.com/Jerryplusy/rc-plugin.git
synced 2025-10-14 16:19:18 +00:00
12 lines
336 B
JavaScript
12 lines
336 B
JavaScript
export default function Weekly() {
|
|
return (
|
|
<div style={ { width: '100%', height: '100vh' } }>
|
|
<iframe
|
|
src="https://rrorangeandfriends.site"
|
|
style={ { width: '100%', height: '100%', border: 'none' } }
|
|
title="External Website"
|
|
/>
|
|
</div>
|
|
)
|
|
}
|