Implement new UI
This commit is contained in:
17
front/src/pages/people/__stories__/People.stories.tsx
Normal file
17
front/src/pages/people/__stories__/People.stories.tsx
Normal file
@ -0,0 +1,17 @@
|
||||
import { MemoryRouter } from 'react-router-dom';
|
||||
import People from '../People';
|
||||
import { ThemeProvider } from '@emotion/react';
|
||||
import { lightTheme } from '../../../layout/styles/themes';
|
||||
|
||||
export default {
|
||||
title: 'People',
|
||||
component: People,
|
||||
};
|
||||
|
||||
export const PeopleDefault = () => (
|
||||
<ThemeProvider theme={lightTheme}>
|
||||
<MemoryRouter>
|
||||
<People />
|
||||
</MemoryRouter>
|
||||
</ThemeProvider>
|
||||
);
|
||||
Reference in New Issue
Block a user