This commit is contained in:
SonPhung
2026-07-10 00:28:31 +07:00
commit f7fec6e510
35 changed files with 5476 additions and 0 deletions

13
src/App.tsx Normal file
View File

@@ -0,0 +1,13 @@
import CampaignRuleWizard from "./pages/CampaignRuleWizard";
import "./index.css"; // Ensure global styles are loaded
import { Layout } from "./components/Layout";
function App() {
return (
<Layout>
<CampaignRuleWizard />
</Layout>
);
}
export default App;