15 lines
510 B
TypeScript
15 lines
510 B
TypeScript
import { checkoutItemsLighting } from '../../data/Checkout';
|
|
import BaseSingleTab from './BaseSingleTab';
|
|
|
|
const Lighting = () => {
|
|
return (
|
|
<BaseSingleTab
|
|
data={checkoutItemsLighting}
|
|
title='CHECKOUT OUR NEW'
|
|
sub_title='Latest Professional Lighting'
|
|
text='We provide a wide range of indoor and outdoor lighting products, project design and supervision services in relation to technical and architectural lighting, and lighting control area.'
|
|
/>
|
|
)
|
|
}
|
|
|
|
export default Lighting |