-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* create default aside component * delete default aside component * update list with aside prop * create aside component for example * delete card style * texts update for aside component * add optional component * npm i * add aside component test to list * update list snapshots test * update example package-lock.json * fix resource test Co-authored-by: Omer Faruk APLAK <[email protected]>
- Loading branch information
1 parent
9dde495
commit 78517a6
Showing
7 changed files
with
233 additions
and
179 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import React from "react"; | ||
import { Card, CardProps } from "antd"; | ||
|
||
export const Aside: React.FC<CardProps> = (props: any) => { | ||
return ( | ||
<Card | ||
{...props} | ||
title="Users List Details" | ||
extra={<a href="#">More</a>} | ||
> | ||
<p> | ||
You can view personal data of users registered in your system in | ||
the user table. | ||
</p> | ||
</Card> | ||
); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.