mirror of
https://github.com/cheveguerra/whaticket-community.git
synced 2026-04-18 03:39:29 +00:00
11 lines
144 B
JavaScript
11 lines
144 B
JavaScript
import React from "react";
|
|
import Routes from "./routes";
|
|
|
|
import "./App.css";
|
|
|
|
const App = () => {
|
|
return <Routes />;
|
|
};
|
|
|
|
export default App;
|