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

                

             
                      


                       


                   
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;