import { Grid, Flex, Text } from '@mantine/core';
import React from 'react';
import { strings } from '../../strings/strings';
interface ProfileRowProps {
name?: string
value?: string
}
const ProfileRow = ({ name, value }: ProfileRowProps) => {
return (
<>
{name}
{value}
>
);
};
export default ProfileRow;