Windows 95 style UI component library for React
The React95 theme is a UI library built for React applications that aims to recreate the nostalgic look and feel of Windows 95. It provides a collection of components and styles that can be easily integrated into a project, allowing developers to create an interface reminiscent of the classic Windows operating system.
To use the React95 theme in your project, follow these installation steps:
npm install react95 styled-components
import { createGlobalStyle } from 'styled-components';
const GlobalStyle = createGlobalStyle`
body {
margin: 0;
padding: 0;
}
`;
const App = () => {
return (
<>
<GlobalStyle />
{/* Rest of your application */}
</>
);
};
export default App;
import { ThemeProvider } from 'styled-components';
import { themes } from 'react95';
const App = () => {
return (
<ThemeProvider theme={themes.original}>
{/* Your application code */}
</ThemeProvider>
);
};
export default App;
The React95 theme is a nostalgic UI library designed for React applications. It offers a range of components and styles inspired by the classic Windows 95 interface, allowing developers to recreate the vintage user experience in modern applications. By integrating the React95 theme, developers can quickly build applications that invoke nostalgia and create a unique user experience.