15 lines
356 B
JavaScript
15 lines
356 B
JavaScript
// components/PackagingShipping/PackagingShippingPage.jsx
|
|
import React from 'react';
|
|
import PageTitle from './PageTitle';
|
|
import ContentSection from './ContentSection';
|
|
|
|
const PackagingShippingPage = () => {
|
|
return (
|
|
<div className="page-content">
|
|
<PageTitle />
|
|
<ContentSection />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default PackagingShippingPage; |