import React from 'react';

import './indent-pages.css';

/* eslint-disable-next-line */
export interface IndentPagesProps {}

export function IndentPages(
  props: IndentPagesProps
) {
  return (
    <div>
      <h1>
        Welcome to
        indent-pages!
      </h1>
    </div>
  );
}

export default IndentPages;
