mirror of
https://github.com/ditkrg/AuthorizationServerDemos.git
synced 2026-01-23 11:17:02 +00:00
13 lines
236 B
JavaScript
13 lines
236 B
JavaScript
import React from "react";
|
|
|
|
const ColumnName = ({ text }) => (
|
|
<th
|
|
scope="col"
|
|
className="px-16 py-4 whitespace-nowrap text-2xl font-inter text-black-custom font-semibold"
|
|
>
|
|
{text}
|
|
</th>
|
|
);
|
|
|
|
export default ColumnName;
|