feat: add audit logging via webhook

This commit is contained in:
41666 2021-07-13 22:15:55 -04:00
parent 5dce2fc949
commit ad8dd18d02
13 changed files with 485 additions and 22 deletions

View file

@ -1,14 +1,22 @@
import * as React from 'react';
import { Space as SpaceComponent } from './Space';
import { LinedSpace, Space } from './Space';
export default {
title: 'Atoms',
title: 'Atoms/Space',
};
export const Space = () => (
export const space = () => (
<>
hello world
<SpaceComponent />
<Space />
but im over here
</>
);
export const linedSpace = () => (
<>
hello world
<LinedSpace />
but im over here
</>
);