aboutsummaryrefslogtreecommitdiff
path: root/src/App.jsx
blob: 5704b3608ec7f82dba3ee2ccdb2ca1bae5a7df73 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import React from "react";
import { Counter } from "./features/counter/Counter";
import { Search } from "./ToDo-UI/Search";

function App() {
    return (
        <div>
            <Search />
            <Counter />
        </div>
    );
}

export default App;