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