Skip to content

Commit

Permalink
fix: Rename GitHub repository
Browse files Browse the repository at this point in the history
  • Loading branch information
HPouyanmehr committed Nov 17, 2022
1 parent bf95e47 commit 4b86e6c
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 5 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "mui-markdown",
"version": "0.5.5",
"version": "0.5.6",
"private": false,
"author": {
"name": "Hosein Pouyanmehr",
"email": "a.h.pouyanmehr@gmail.com",
"url": "https://github.com/hajhosein"
"url": "https://github.com/HPouyanmehr"
},
"description": "mui-markdown uses markdown-to-jsx and MUI(formerly material-ui) to help you render MD/MDX files with MUI components.",
"license": "MIT",
Expand All @@ -19,13 +19,13 @@
"mui markdown",
"material-ui markdown"
],
"homepage": "https://github.com/hajhosein/mui-markdown",
"homepage": "https://github.com/HPouyanmehr/mui-markdown",
"repository": {
"type": "git",
"url": "https://github.com/hajhosein/mui-markdown"
"url": "https://github.com/HPouyanmehr/mui-markdown"
},
"bugs": {
"url": "https://github.com/hajhosein/mui-markdown/issues"
"url": "https://github.com/HPouyanmehr/mui-markdown/issues"
},
"peerDependencies": {
"@emotion/react": "^11.7.1",
Expand Down
16 changes: 16 additions & 0 deletions src/stories/Image.stories.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import { storiesOf } from '@storybook/react';
import MuiMarkdown from '..';

const stories = storiesOf('MuiMarkdown', module);

const shit = `
[![Some Random Image](https://picsum.photos/100/100)](https://picsum.photos)
`;

stories.add('Images', () => {
return (
<>
<MuiMarkdown>{shit}</MuiMarkdown>
</>
);
});

0 comments on commit 4b86e6c

Please sign in to comment.