mirror of
https://github.com/ditkrg/AuthorizationServerDemos.git
synced 2026-01-23 22:56:56 +00:00
13 lines
298 B
JavaScript
13 lines
298 B
JavaScript
import React from "react";
|
|
|
|
const TableData = ({ text, Component }) => (
|
|
<td
|
|
className="whitespace-nowrap text-2xl font-inter text-black-custom font-normal text-center"
|
|
style={{ padding: "10px 40px 10px 40px" }}
|
|
>
|
|
{text ? text : <Component />}
|
|
</td>
|
|
);
|
|
|
|
export default TableData;
|