tofu5856
@tofu5856 (康矢 松村)

Are you sure you want to delete the question?

Leaving a resolved question undeleted may help others!

App.jsx

Q&A

Closed

@uttk
ここのところで全ての処理をまとめています。
App.jsx

import React, { useRef, useEffect } from "react";
import "./styles/reset.css";
import "./styles/styles.css";
import {
  Header,
  // Background,
  Introduction,
  SlideBar,
  SliderTop,
  Instagram,
  Twitter,
} from "./components/index";

import { Up, Intersection } from "./scripts/index";

function App() {
  const ref = useRef(null);
  return (
    <div className="">
      <Intersection>
        <div className="">
          <Header />

          <div className="">
            {/* <Background /> */}

            {/* <Up> */}
            <SliderTop />
            {/* </Up> */}

            <Introduction />

            <div id="BackScroll__3">
              <SlideBar />
            </div>
            <div id="BackScroll__4" ref={ref}>
              <Instagram />
            </div>
            <div id="BackScroll__5">
              <Twitter />
            </div>
          </div>
        </div>
      </Intersection>
    </div>
  );
}

export default App;


このItersectionの入れ子構造も違いました。

0

No Answers yet.

Your answer might help someone💌