aboutsummaryrefslogtreecommitdiff
path: root/paste-ui/src/App.js
blob: 215de9c443615e2512ae82c30eeb462ef4e8efe8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import './style.css';

import List from './list';
import View from './view';

import MovingDot from './stateExample';


function App() {
  let asdf = "aasdf";
  return (
    <div className="container">
      <List></List>
    
      <View id="dZ3mGNs"></View>
    </div>
  );
}

export default App;