import React from "react";
import Colors from "../../../constants/Colors";
import { Stack } from "expo-router";
const IntegrationsLayout = () => {
return (
<Stack>
<Stack.Screen name="integrations" options={{ headerShown: false }} />
</Stack>
);
};
export default IntegrationsLayout;