mirror of
https://github.com/gosticks/react-table.git
synced 2026-08-19 08:20:30 +00:00
22 lines
511 B
JavaScript
22 lines
511 B
JavaScript
import React from "react";
|
|
|
|
export default id => () => {
|
|
return (
|
|
<iframe
|
|
src={`https://codesandbox.io/embed/${id}?autoresize=1&hidenavigation=1&view=${
|
|
global.innerWidth < 1000 ? "preview" : "split"
|
|
}`}
|
|
style={{
|
|
position: "absolute",
|
|
top: 0,
|
|
left: 0,
|
|
width: `100%`,
|
|
height: `100%`,
|
|
border: 0,
|
|
overflow: `hidden`
|
|
}}
|
|
sandbox="allow-modals allow-forms allow-popups allow-scripts allow-same-origin"
|
|
/>
|
|
);
|
|
};
|