15 lines
359 B
JavaScript
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; |