mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-06-17 18:09:09 +00:00
feat: add audit logging via webhook
This commit is contained in:
parent
5dce2fc949
commit
ad8dd18d02
13 changed files with 485 additions and 22 deletions
|
@ -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
|
||||
</>
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue