Files
cn-ui/src/App.tsx
SonPhung f7fec6e510 init
2026-07-10 00:28:31 +07:00

14 lines
277 B
TypeScript

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;