mirror of
https://github.com/ditkrg/AuthorizationServerDemos.git
synced 2026-01-22 23:46:54 +00:00
14 lines
284 B
JavaScript
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;
|