14 lines
277 B
TypeScript
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;
|