AuthorizationServerDemos/React/real-estate/src/pages/components/table/ColumnName.js
2021-01-17 11:06:55 +03:00

14 lines
284 B
JavaScript

import React from "react";
const ColumnName = ({ text }) => (
<th
scope="col"
className="whitespace-nowrap text-2xl font-inter text-black-custom font-semibold text-center"
style={{ padding: "10px 40px 10px 40px" }}
>
{text}
</th>
);
export default ColumnName;