summaryrefslogtreecommitdiff
path: root/client/src/components/Registry.tsx
blob: 038bd1d7811a16be3c6c4d06ec3919b039caeaf5 (plain)
1
2
3
4
5
6
7
8
9
10
11
import React from 'react';

function Registry() {
  return (
    <div style={{ height: '100%', width: '100%', display: 'flex' }}>
      <p style={{ marginTop: 64 }}>Registry</p>
    </div>
  );
}

export default Registry;