feat: init project

This commit is contained in:
2022-10-06 13:42:22 +03:00
parent 9d46d5bab6
commit 526c416023
42 changed files with 41527 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
import React from "react";
import FilterTools from "../../components/filterTools";
import CardsTable from "../../components/cardsTable";
import "./style.scss";
const ServicesPage = () => {
return (
<div className="services-page">
<div className="services-container">
<FilterTools />
<CardsTable />
</div>
</div>
);
};
export default ServicesPage;