Files
leocrm/frontend/src/pages/ContactsStandalone.tsx
T

11 lines
243 B
TypeScript
Raw Normal View History

import React from 'react';
import { ContactsListPage } from './ContactsList';
export function ContactsStandalonePage() {
return (
<div className="h-screen w-screen overflow-hidden bg-white">
<ContactsListPage />
</div>
);
}