ScrollIntoViewCaseSimple.js15 lines
mainRaw
import ScrollIntoViewTargetElement from './ScrollIntoViewTargetElement';

const React = window.React;
const {Fragment} = React;

export default function ScrollIntoViewCaseSimple() {
  return (
    <Fragment>
      <ScrollIntoViewTargetElement color="lightyellow" id="SCROLLABLE-1" />
      <ScrollIntoViewTargetElement color="lightpink" id="SCROLLABLE-2" />
      <ScrollIntoViewTargetElement color="lightcyan" id="SCROLLABLE-3" />
    </Fragment>
  );
}
Loading syntax highlighting…