feat: init project
This commit is contained in:
19
src/pages/services/index.jsx
Normal file
19
src/pages/services/index.jsx
Normal 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;
|
||||
Reference in New Issue
Block a user