aboutsummaryrefslogtreecommitdiffstats
path: root/spring-front/src/App.js
blob: 23931525429d26a88de5a6e2edd9785e34cd0e22 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import React from "react";
import Left from "./components/Left.js";
import Right from "./components/Right.js";

export default function App() {
  return (
    <div>
      <Left />
      <Right />
    </div>
  );
}