aboutsummaryrefslogblamecommitdiff
path: root/src/App.jsx
blob: 682a1b1548819135c80027a1d269e4b6d2c008a2 (plain) (tree)
1
2
3
4
5
6
7
8
9
                          
                                                        
                                          
                                         

                

             
                      
                       

              


                   
import React from "react";
// import { Counter } from "./features/counter/Counter";
import { Search } from "./ToDo-UI/Search";
import { Reducer } from "./ToDo-UI/ToDo";

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

export default App;