You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
567 B
18 lines
567 B
import React from "react"; |
|
import Class from "../../components/products/classes"; |
|
import PLATFORM_DATA from "../../store"; |
|
const Services = () => { |
|
return( |
|
<div className="flex" style={{width: '93.5%', marginRight: '6.5%', marginTop: '8.5%'}}> |
|
|
|
{ |
|
PLATFORM_DATA.classes.map((item, idx) => ( |
|
<Class title={item.title} description={item.description} price={item.price} group={item.group} teacher={item.teacher} /> |
|
)) |
|
} |
|
|
|
</div> |
|
); |
|
}; |
|
|
|
export default Services; |