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