Files
operify/app/components/SampleGuideline/SampleGuidelinePage.jsx
2025-06-16 15:53:12 +05:30

15 lines
359 B
JavaScript

import React from 'react';
import PageTitle from './PageTitle';
import IntroSection from './IntroSection';
import ContentSection from './ContentSection';
const SampleGuidelinePage = () => {
return (
<div className="page-content">
<PageTitle />
<IntroSection />
<ContentSection />
</div>
);
};
export default SampleGuidelinePage;