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

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

export default App;