summaryrefslogtreecommitdiff
path: root/src/components/shared/Basic.js
blob: 9d07a3957d2c6f3570199f56016e0939c65fedff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import React from 'react';

import s from './Basic.module.css';

export function SectionNameType({ name, type }) {
  return (
    <h2 className={s.sectionNameType}>
      <span>{name}</span>
      <span>{type}</span>
    </h2>
  );
}